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
28 lines
1 KiB
Text
28 lines
1 KiB
Text
# Maintainer: Bart Ribbers <bribbers@disroot.org>
|
|
pkgname=qmlkonsole
|
|
pkgver=0_git20200128
|
|
pkgrel=1
|
|
_commit="78e4277efde0d0a58f0ff6244038f680dd6c572c"
|
|
pkgdesc="Terminal app for Plasma Mobile"
|
|
arch="all !armhf"
|
|
url="https://invent.kde.org/jbbgameich/qmlkonsole"
|
|
license="GPL-3.0-or-later"
|
|
depends="qmltermwidget kirigami2 qt5-qtquickcontrols"
|
|
makedepends="extra-cmake-modules qt5-qtbase-dev qt5-qtdeclarative-dev qt5-qtsvg-dev qt5-qtquickcontrols2-dev"
|
|
source="https://invent.kde.org/jbbgameich/qmlkonsole/-/archive/$_commit/qmlkonsole-$_commit.tar.gz"
|
|
options="!check" # No tests
|
|
builddir="$srcdir/$pkgname-$_commit"
|
|
|
|
build() {
|
|
cmake -B "$builddir"/build \
|
|
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_INSTALL_LIBDIR=lib
|
|
make -C build
|
|
}
|
|
|
|
package() {
|
|
DESTDIR="$pkgdir" make -C build install
|
|
}
|
|
|
|
sha512sums="ad2592b3d28538293602b7228a049840d782ead51e709e1f8b6f463c93d7088783f53a0c34c5b55f895e28b2c6dde2bc3ef1b2c1de26a503054a15e973a785d1 qmlkonsole-78e4277efde0d0a58f0ff6244038f680dd6c572c.tar.gz"
|