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
35 lines
1.1 KiB
Text
35 lines
1.1 KiB
Text
# Maintainer: Bart Ribbers <bribbers@disroot.org>
|
|
pkgname=kquicksyntaxhighlighter
|
|
pkgver=0_git20181209
|
|
pkgrel=1
|
|
_commit="eae18069e0acab42f9dfdef2339b22bb77b44640"
|
|
pkgdesc="QtQuick bindings for KF5SyntaxHightlighting framework"
|
|
arch="all !armhf"
|
|
url="https://community.kde.org/Plasma/Mobile"
|
|
license="LGPL-2.1-only OR LGPL-3.0-only"
|
|
options="!check"
|
|
depends="syntax-highlighting qt5-qtdeclarative"
|
|
makedepends="extra-cmake-modules qt5-qtdeclarative-dev syntax-highlighting-dev"
|
|
source="$pkgname-$_commit.tar.gz::https://cgit.kde.org/scratch/hein/kquicksyntaxhighlighter.git/snapshot/$_commit.tar.gz"
|
|
builddir="$srcdir/$_commit"
|
|
|
|
prepare() {
|
|
default_prepare
|
|
mkdir "$builddir"/build
|
|
}
|
|
|
|
build() {
|
|
cd "$builddir"/build
|
|
cmake "$builddir" \
|
|
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_INSTALL_LIBDIR=lib
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"/build
|
|
DESTDIR="$pkgdir" make install
|
|
}
|
|
|
|
sha512sums="1e752efa6bc8cad5852ffc022436646e24f36d1c1532b96ba0d7f917a1460d73eb2591f5b392b89fcc41ed0c4fefcb1dac45e145c1e5dd3d80ca46dff54058fc kquicksyntaxhighlighter-eae18069e0acab42f9dfdef2339b22bb77b44640.tar.gz"
|