105de5a836
homepage picked from specs file.
73 lines
1.9 KiB
Bash
73 lines
1.9 KiB
Bash
# Template file for 'libxslt'
|
|
pkgname=libxslt
|
|
version=1.1.35
|
|
revision=2
|
|
build_style=gnu-configure
|
|
configure_args="--disable-static --disable-dependency-tracking"
|
|
hostmakedepends="docbook-xml docbook-xsl libtool pkg-config python3"
|
|
makedepends="libxml2-devel libgcrypt-devel python3-devel"
|
|
short_desc="XSLT parser library from the GNOME project"
|
|
maintainer="Orphaned <orphan@voidlinux.org>"
|
|
license="MIT"
|
|
homepage="https://gitlab.gnome.org/GNOME/libxslt"
|
|
distfiles="${GNOME_SITE}/libxslt/${version%.*}/libxslt-${version}.tar.xz"
|
|
checksum=8247f33e9a872c6ac859aa45018bc4c4d00b97e2feac9eebc10c93ce1f34dd79
|
|
python_version=3
|
|
CFLAGS="-I$XBPS_CROSS_BASE/usr/include/python$py3_ver"
|
|
|
|
if [ "$CROSS_BUILD" ]; then
|
|
hostmakedepends+=" libxslt"
|
|
fi
|
|
|
|
post_configure() {
|
|
# Remove missing seperators and errors
|
|
# on don't know how to make target, needed
|
|
# by Usage:
|
|
# Makefile is created after configure so fix here
|
|
find ${wrksrc} -type f -name Makefile | xargs sed -i '/Usage/,/--version/d'
|
|
}
|
|
|
|
post_build() {
|
|
if [ "$CROSS_BUILD" ]; then
|
|
XSLTPROC=/usr/bin/xsltproc
|
|
else
|
|
XSLTPROC=${wrksrc}/xsltproc/xsltproc
|
|
fi
|
|
make -C doc XSLTPROC=$XSLTPROC
|
|
}
|
|
|
|
post_install() {
|
|
if [ "$CROSS_BUILD" ]; then
|
|
# Remove $XBPS_CROSS_BASE in pkg-config
|
|
vsed -i -e "s,-I${XBPS_CROSS_BASE}/usr/include,-I\${includedir}," \
|
|
$DESTDIR/usr/bin/xslt-config
|
|
vsed -i -e "s,$XBPS_CROSS_BASE,,g" \
|
|
$DESTDIR/usr/lib/pkgconfig/libexslt.pc
|
|
fi
|
|
vlicense COPYING
|
|
}
|
|
|
|
libxslt-devel_package() {
|
|
depends="libxml2-devel ${sourcepkg}>=${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/bin/xslt-config
|
|
vmove usr/lib/xsltConf.sh
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
vmove "usr/lib/*.so"
|
|
vmove usr/share/aclocal
|
|
vmove usr/share/doc
|
|
vmove usr/share/man/man3
|
|
vmove usr/share/gtk-doc
|
|
vmove usr/lib/cmake
|
|
}
|
|
}
|
|
|
|
libxslt-python3_package() {
|
|
depends="python3 ${sourcepkg}>=${version}"
|
|
short_desc+=" - Python 3 bindings"
|
|
pkg_install() {
|
|
vmove "${py3_lib}"
|
|
}
|
|
}
|