57 lines
1.6 KiB
Bash
57 lines
1.6 KiB
Bash
# Template build file for 'libxslt'.
|
|
pkgname=libxslt
|
|
version=1.1.29
|
|
revision=2
|
|
build_style=gnu-configure
|
|
configure_args="--disable-static"
|
|
makedepends="python-devel libxml2-devel libgcrypt-devel"
|
|
short_desc="XSLT parser library from the GNOME project"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
homepage="http://xmlsoft.org/XSLT/"
|
|
license="MIT"
|
|
distfiles="ftp://xmlsoft.org/${pkgname}/${pkgname}-${version}.tar.gz"
|
|
checksum=b5976e3857837e7617b29f2249ebb5eeac34e249208d31f1fbf7a6ba7a4090ce
|
|
|
|
if [ "$CROSS_BUILD" ]; then
|
|
hostmakedepends="libtool automake gettext-devel ${makedepends}"
|
|
pre_configure() {
|
|
sed -e "s|AM_CONFIG_HEADER|AC_CONFIG_HEADERS|g" -i configure.in
|
|
autoreconf -fi
|
|
}
|
|
pre_build() {
|
|
sed -e "s|/usr/\(include/python2.7\)|$XBPS_CROSS_BASE/\1|g" \
|
|
-e "s|/usr/\(lib/python2.7/site-packages\)|$XBPS_CROSS_BASE/\1|g" \
|
|
-i python/Makefile
|
|
}
|
|
fi
|
|
|
|
post_install() {
|
|
# Remove references to the install(1) wrapper.
|
|
sed -e "s,${XBPS_WRAPPERDIR},/usr/bin,g" -i ${DESTDIR}/usr/bin/xslt-config
|
|
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/${sourcepkg}-${version}
|
|
vmove usr/share/man/man3
|
|
}
|
|
}
|
|
|
|
libxslt-python_package() {
|
|
lib32disabled=yes
|
|
short_desc+=" - python extension"
|
|
pycompile_module="libxslt.py"
|
|
pkg_install() {
|
|
vmove "usr/lib/python*"
|
|
vmove usr/share/doc/${sourcepkg}-python-${version}
|
|
}
|
|
}
|