a85db1dc7b
At the moment we have Contributor: lines on some packages (but not all of them), but often they don't represent the actual contributors to the package very well. E.g. when we added them retroactively to the device packages we only added the initial contributor (which isn't necessarily the person who made most of the work for a device...) The Git history is the most representative source for figuring out who contributed to a package, so there is no reason to duplicate that into the APKBUILD. [skip ci]: way too many packages
38 lines
1.2 KiB
Text
38 lines
1.2 KiB
Text
# Maintainer: Luca Weiss <luca@z3ntu.xyz>
|
|
pkgname=qt5-qtsystems
|
|
pkgver=0_git20190103
|
|
_commit="e3332ee38d27a134cef6621fdaf36687af1b6f4a"
|
|
pkgrel=1
|
|
arch="x86_64"
|
|
url='http://qt-project.org/'
|
|
license="LGPL-2.1-only AND LGPL-3.0-only AND GPL-3.0-only AND Qt-GPL-exception-1.0"
|
|
pkgdesc="Qt Systems"
|
|
depends_dev="qt5-qtdeclarative-dev"
|
|
makedepends="$depends_dev git"
|
|
source="$pkgname-$_commit.tar.gz::https://github.com/qt/qtsystems/archive/$_commit.tar.gz"
|
|
subpackages="$pkgname-dev $pkgname-doc"
|
|
builddir="$srcdir/qtsystems-$_commit"
|
|
options="!check"
|
|
|
|
prepare() {
|
|
default_prepare
|
|
# Something in the build system only runs the syncqt.pl script when it's in a git repo
|
|
git init
|
|
}
|
|
|
|
build() {
|
|
qmake-qt5
|
|
make
|
|
}
|
|
|
|
package() {
|
|
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' {} \;
|
|
|
|
install -d "$pkgdir"/usr/share/licenses
|
|
ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/$pkgname
|
|
}
|
|
sha512sums="48ed8353a021892cb226a5cb99de1919a48638ddf765094f47c204e8699892e33f66a39d717bfd238516b9529d2158227be8c510f4f1a7ddb68901e6e7cb0e85 qt5-qtsystems-e3332ee38d27a134cef6621fdaf36687af1b6f4a.tar.gz"
|