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
26 lines
995 B
Text
26 lines
995 B
Text
# Maintainer: Bart Ribbers <bribbers@disroot.org>
|
|
pkgname=index
|
|
pkgver=0_git20191001
|
|
pkgrel=0
|
|
_commit="82de927e6177d11c1cebe22b314c40cb23c91e3a"
|
|
pkgdesc="Index file manager based on MauiKit"
|
|
arch="all !armhf" # armhf blocked by qt5-qtdeclarative
|
|
url="https://invent.kde.org/kde/index-fm"
|
|
license="GPL-2.0-or-later"
|
|
depends="mauikit qmltermwidget"
|
|
makedepends="extra-cmake-modules qt5-qtbase-dev qt5-qtdeclarative-dev mauikit-dev kservice-dev knotifications-dev ki18n-dev kio-dev"
|
|
source="$pkgname-$_commit.tar.gz::https://invent.kde.org/kde/index-fm/-/archive/$_commit.tar.gz"
|
|
options="!check" # No tests available
|
|
builddir="$srcdir/$pkgname-fm-$_commit"
|
|
|
|
build() {
|
|
cmake \
|
|
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
|
|
-DCMAKE_INSTALL_PREFIX=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
DESTDIR="$pkgdir" make install
|
|
}
|
|
sha512sums="2997dbfca1d4e1da2ad495b20b7bc7c3678b9f80ca717d68a7dbe4baf80803e11779f2ac489be4efe888a8a5a887a9a47075e01ebf5290d9ce5ee935be0c715a index-82de927e6177d11c1cebe22b314c40cb23c91e3a.tar.gz"
|