49 lines
1.2 KiB
Text
49 lines
1.2 KiB
Text
|
# Template file for 'source-highlight'
|
||
|
pkgname=source-highlight
|
||
|
version=3.1.7
|
||
|
revision=1
|
||
|
build_style=gnu-configure
|
||
|
configure_args="--with-boost=${XBPS_CROSS_BASE}/usr
|
||
|
--with-bash-completion=/usr/share/bash-completion/completions"
|
||
|
makedepends="boost-devel"
|
||
|
short_desc="Convert source code to syntax highlighted document"
|
||
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
||
|
license="GPL-3"
|
||
|
homepage="http://www.gnu.org/software/src-highlite/"
|
||
|
distfiles="http://ftp.gnu.org/gnu/src-highlite/$pkgname-$version.tar.gz"
|
||
|
checksum=e1b2e007cdd94595393d42510e2a84763c36aad3409f0c3087f05fcb50a389e8
|
||
|
|
||
|
if [ "$CROSS_BUILD" ]; then
|
||
|
hostmakedepends="source-highlight"
|
||
|
fi
|
||
|
|
||
|
post_configure() {
|
||
|
if [ "$CROSS_BUILD" ]; then
|
||
|
sed -e 's,SRCHILITEEXE =.*,SRCHILITEEXE = source-highlight,g' -i doc/Makefile
|
||
|
fi
|
||
|
}
|
||
|
|
||
|
libsource-highlight_package() {
|
||
|
short_desc+=" - runtime library"
|
||
|
pkg_install() {
|
||
|
vmove "usr/lib/*.so.*"
|
||
|
}
|
||
|
}
|
||
|
|
||
|
source-highlight-devel_package() {
|
||
|
short_desc+=" - development files"
|
||
|
depends="libsource-highlight>=${version}_${revision}"
|
||
|
pkg_install() {
|
||
|
vmove usr/include
|
||
|
vmove usr/lib/pkgconfig
|
||
|
vmove "usr/lib/*.a"
|
||
|
vmove "usr/lib/*.so"
|
||
|
}
|
||
|
}
|
||
|
|
||
|
source-highlight_package() {
|
||
|
pkg_install() {
|
||
|
vmove all
|
||
|
}
|
||
|
}
|