diff options
author | Francesco Colista <fcolista@alpinelinux.org> | 2017-12-02 04:28:13 +0000 |
---|---|---|
committer | Francesco Colista <fcolista@alpinelinux.org> | 2017-12-02 04:28:13 +0000 |
commit | 4c271add83bb3fac1aca5c5c016efc6d89d141fe (patch) | |
tree | 05c422f2c3c305967beccd07251bfa73035694dd /testing/qt5-qtlocation/APKBUILD | |
parent | 34612a2b970f63863bc11593607603dcee29c8b6 (diff) | |
download | aports-4c271add83bb3fac1aca5c5c016efc6d89d141fe.tar.bz2 aports-4c271add83bb3fac1aca5c5c016efc6d89d141fe.tar.xz |
testing/qt5-qtlocation: new aport
Diffstat (limited to 'testing/qt5-qtlocation/APKBUILD')
-rw-r--r-- | testing/qt5-qtlocation/APKBUILD | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/testing/qt5-qtlocation/APKBUILD b/testing/qt5-qtlocation/APKBUILD new file mode 100644 index 0000000000..647c7ef012 --- /dev/null +++ b/testing/qt5-qtlocation/APKBUILD @@ -0,0 +1,43 @@ +# Contributor: Francesco Colista <fcolista@alpinelinux.org> +# Maintainer: Francesco Colista <fcolista@alpinelinux.org> +pkgname=qt5-qtlocation +_pkgname=${pkgname/qt5-//}-opensource-src +pkgver=5.9.3 +_ver=${pkgver/_/-} +_ver=${_ver/beta0/beta} +_ver=${_ver/rc0/rc} +_V=${_ver/rc/RC} +pkgrel=0 +pkgdesc="Qt5 - Location component" +url="http://qt-project.org/" +arch="all" +license="LGPLv2 with exceptions or GPLv3 with exceptions" +options="!check" # upstream does not provide check +makedepends="qt5-qtbase-dev" +subpackages="$pkgname-dev" + +case $pkgver in +*_beta*|*_rc*) _rel=development_releases;; +*) _rel=official_releases;; +esac +source="http://download.qt-project.org/$_rel/qt/${pkgver%.*}/$_ver/submodules/$_pkgname-$_V.tar.xz" + +builddir="$srcdir"/$_pkgname-${_V%-*} + +prepare() { + default_prepare + cd "$builddir" + mkdir -p build +} + +build() { + cd "$builddir"/build + qmake-qt5 .. + make +} + +package() { + cd "$builddir"/build + make INSTALL_ROOT="$pkgdir" install +} +sha512sums="11bf2c6000fc2db92dc857cc6f271e7ff19f500fde14520678e9af57fac41debde4c4b937dbab4fe1f7d5744e1bd0fc25ea32fceecf97d32cecdbbc8e2105373 qtlocation-opensource-src-5.9.3.tar.xz" |