41 lines
1.3 KiB
Bash
41 lines
1.3 KiB
Bash
# Template file for 'syntax-highlighting'
|
|
pkgname=syntax-highlighting
|
|
version=5.43.0
|
|
revision=1
|
|
build_style=cmake
|
|
configure_args="-DBUILD_TESTING=OFF"
|
|
hostmakedepends="extra-cmake-modules perl"
|
|
makedepends="qt5-devel qt5-tools-devel qt5-xmlpatterns-devel"
|
|
short_desc="Syntax highlighting engine for structured text and code"
|
|
maintainer="Denis Revin <denis.revin@gmail.com>"
|
|
license="LGPL-2"
|
|
homepage="https://projects.kde.org/projects/frameworks/syntax-highlighting"
|
|
distfiles="http://download.kde.org/stable/frameworks/${version%.*}/${pkgname}-${version}.tar.xz"
|
|
checksum=611e6ddbd34f2410a2618cef32cc87b49757001da351369ac16c2b3ee6cd3d28
|
|
|
|
if [ -n "$CROSS_BUILD" ]; then
|
|
hostmakedepends+=" qt5-host-tools qt5-qmake qt5-tools syntax-highlighting"
|
|
fi
|
|
|
|
pre_configure() {
|
|
if [ -n "$CROSS_BUILD" ]; then
|
|
sed -i -e "s,COMMAND katehighlightingindexer,COMMAND /usr/lib/libexec/${pkgname}/katehighlightingindexer,g" data/CMakeLists.txt
|
|
fi
|
|
}
|
|
|
|
post_install() {
|
|
# internal tool needed for cross-building
|
|
vinstall build/bin/katehighlightingindexer 0755 usr/lib/libexec/${pkgname}
|
|
}
|
|
|
|
syntax-highlighting-devel_package() {
|
|
short_desc+=" - development"
|
|
depends="${makedepends} ${sourcepkg}>=${version}_${revision}"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/qt5/mkspecs
|
|
vmove usr/lib/cmake
|
|
vmove usr/lib/*.so
|
|
}
|
|
}
|