diff options
author | Bart Ribbers <bribbers@disroot.org> | 2019-07-14 00:55:42 +0200 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2019-07-13 22:20:39 -0300 |
commit | c702f2a812cfbc5c0c1a68b6f120cf332f788f1f (patch) | |
tree | 800e1687809b5e688995a9948d19af9e577a167d /community/syntax-highlighting/APKBUILD | |
parent | 8d48f29796e55f6906ecb8cb8ef27e1b4dc3b820 (diff) | |
download | aports-c702f2a812cfbc5c0c1a68b6f120cf332f788f1f.tar.bz2 aports-c702f2a812cfbc5c0c1a68b6f120cf332f788f1f.tar.xz |
community/kde-frameworks: move from testing
Diffstat (limited to 'community/syntax-highlighting/APKBUILD')
-rw-r--r-- | community/syntax-highlighting/APKBUILD | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/community/syntax-highlighting/APKBUILD b/community/syntax-highlighting/APKBUILD new file mode 100644 index 0000000000..173ce43d5a --- /dev/null +++ b/community/syntax-highlighting/APKBUILD @@ -0,0 +1,31 @@ +# Contributor: Bart Ribbers <bribbers@disroot.org> +# Maintainer: Bart Ribbers <bribbers@disroot.org> +pkgname=syntax-highlighting +pkgver=5.60.0 +pkgrel=0 +pkgdesc="Syntax highlighting engine for structured text and code" +arch="all" +url="https://community.kde.org/Frameworks" +license="MIT" +depends_dev="qt5-qtbase-dev" +makedepends="$depends_dev extra-cmake-modules qt5-qttools-dev doxygen" +source="https://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz" +subpackages="$pkgname-dev $pkgname-doc $pkgname-lang" + +build() { + cmake \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_BUILD_TYPE=RelWithDebInfo \ + -DCMAKE_INSTALL_LIBDIR=lib \ + -DBUILD_QCH=ON + make +} + +check() { + CTEST_OUTPUT_ON_FAILURE=TRUE ctest +} + +package() { + DESTDIR="$pkgdir" make install +} +sha512sums="266e1df814e3b6383068347238c6d8a46736112b4d0037784361b9b756a9f00ca29ce615185dbb553568fec9dca97671c95d1d39dde1f40a864c1ff40174ec15 syntax-highlighting-5.60.0.tar.xz" |