58 lines
1.5 KiB
Text
58 lines
1.5 KiB
Text
# Template build file for 'libxml2'.
|
|
pkgname=libxml2
|
|
version=2.9.1
|
|
revision=1
|
|
build_style=gnu-configure
|
|
configure_args="--disable-static --with-threads --with-history"
|
|
makedepends="zlib-devel ncurses-devel readline-devel liblzma-devel python-devel"
|
|
short_desc="Library providing XML and HTML support"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
homepage="http://www.xmlsoft.org/"
|
|
license="MIT"
|
|
distfiles="http://xmlsoft.org/sources/$pkgname-$version.tar.gz"
|
|
checksum=fd3c64cb66f2c4ea27e934d275904d92cec494a8e8405613780cbc8a71680fdb
|
|
|
|
if [ "$CROSS_BUILD" ]; then
|
|
hostmakedepends="automake libtool gettext-devel python-devel"
|
|
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" -i python/Makefile
|
|
}
|
|
fi
|
|
|
|
post_install() {
|
|
vinstall COPYING 644 usr/share/licenses/${pkgname}
|
|
}
|
|
|
|
libxml2-devel_package() {
|
|
depends="zlib-devel libxml2>=${version}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/bin/xml2-config
|
|
vmove usr/lib/xml2Conf.sh
|
|
vmove usr/lib/pkgconfig
|
|
vmove usr/share/aclocal
|
|
vmove usr/share/gtk-doc
|
|
vmove usr/share/doc/${sourcepkg}-${version}
|
|
vmove "usr/share/man/man1/xml2-config*"
|
|
vmove usr/share/man/man3
|
|
}
|
|
}
|
|
|
|
libxml2-python_package() {
|
|
short_desc+=" - python extension"
|
|
pkg_install() {
|
|
vmove "usr/lib/python*"
|
|
vmove usr/share/doc/${sourcepkg}-python-${version}
|
|
}
|
|
}
|
|
|
|
libxml2_package() {
|
|
pkg_install() {
|
|
vmove usr
|
|
}
|
|
}
|