Date: Tuesday, October 10, 2017 @ 12:20:10 Author: arojas Revision: 307360
archrelease: copy kde-unstable to kde-unstable-x86_64 Added: qt5-charts/repos/kde-unstable-x86_64/ qt5-charts/repos/kde-unstable-x86_64/PKGBUILD (from rev 307359, qt5-charts/kde-unstable/PKGBUILD) ----------+ PKGBUILD | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) Copied: qt5-charts/repos/kde-unstable-x86_64/PKGBUILD (from rev 307359, qt5-charts/kde-unstable/PKGBUILD) =================================================================== --- kde-unstable-x86_64/PKGBUILD (rev 0) +++ kde-unstable-x86_64/PKGBUILD 2017-10-10 12:20:10 UTC (rev 307360) @@ -0,0 +1,39 @@ +# $Id$ +# Maintainer: Felix Yan <felixonm...@archlinux.org> +# Maintainer: Antonio Rojas <aro...@archlinux.org> + +pkgname=qt5-charts +_qtver=5.10.0-beta +pkgver=${_qtver/-/} +pkgrel=1 +arch=('i686' 'x86_64') +url='http://qt-project.org/' +license=('GPL3') +pkgdesc='Provides a set of easy to use chart components' +depends=('qt5-base') +makedepends=('qt5-declarative') +optdepends=('qt5-declarative: QML bindings') +groups=('qt' 'qt5') +_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}" +source=("http://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz") +sha256sums=('2dba15b129518ded79dd0c87ec001fb261a3206d05aeba0e3ed83d2a308fe7ca') + +prepare() { + mkdir -p build +} + +build() { + cd build + + qmake ../${_pkgfqn} + make +} + +package() { + cd build + make INSTALL_ROOT="$pkgdir" install + + # Drop QMAKE_PRL_BUILD_DIR because reference the build dir + find "$pkgdir/usr/lib" -type f -name '*.prl' \ + -exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \; +}