55 lines
1.5 KiB
Bash
55 lines
1.5 KiB
Bash
# Template build file for 'libxml2'.
|
|
pkgname=libxml2
|
|
version=2.9.4
|
|
revision=2
|
|
build_style=gnu-configure
|
|
configure_args="--disable-static --with-threads --with-history"
|
|
hostmakedepends="automake libtool gettext-devel pkg-config python-devel"
|
|
makedepends="zlib-devel ncurses-devel readline-devel liblzma-devel python-devel"
|
|
short_desc="Library providing XML and HTML support"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
homepage="http://www.xmlsoft.org/"
|
|
license="MIT"
|
|
distfiles="http://xmlsoft.org/sources/$pkgname-$version.tar.gz"
|
|
checksum=ffb911191e509b966deb55de705387f14156e1a56b21824357cdf0053233633c
|
|
|
|
LDFLAGS="-lz -llzma -lpthread"
|
|
|
|
pre_configure() {
|
|
autoreconf -fi
|
|
sed '/PROGRAMS =/s,$(noinst_PROGRAMS),,' -i Makefile.in
|
|
}
|
|
pre_build() {
|
|
if [ "$CROSS_BUILD" ]; then
|
|
sed "s|/usr/\(include/python2.7\)|$XBPS_CROSS_BASE/\1|g" -i python/Makefile
|
|
fi
|
|
}
|
|
post_install() {
|
|
vlicense COPYING
|
|
}
|
|
|
|
libxml2-devel_package() {
|
|
depends="zlib-devel liblzma-devel libxml2>=${version}_${revision}"
|
|
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/lib/cmake
|
|
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
|
|
vmove "usr/lib/*.so"
|
|
}
|
|
}
|
|
libxml2-python_package() {
|
|
lib32disabled=yes
|
|
short_desc+=" - python extension"
|
|
pkg_install() {
|
|
vmove "usr/lib/python*"
|
|
vmove usr/share/doc/${sourcepkg}-python-${version}
|
|
}
|
|
}
|