35 lines
912 B
Bash
35 lines
912 B
Bash
# Template file for 'libxml2-python'
|
|
pkgname=libxml2-python
|
|
version=2.9.10
|
|
revision=3
|
|
wrksrc="${pkgname%-python}-${version}"
|
|
build_wrksrc=python
|
|
build_style=python-module
|
|
hostmakedepends="python-devel python3-devel"
|
|
makedepends="libxml2-devel python-devel python3-devel"
|
|
depends="python python3"
|
|
short_desc="Library providing XML and HTML support - Python2 bindings"
|
|
maintainer="Enno Boland <gottox@voidlinux.org>"
|
|
license="MIT"
|
|
homepage="http://www.xmlsoft.org/"
|
|
distfiles="http://xmlsoft.org/sources/libxml2-${version}.tar.gz"
|
|
checksum=aafee193ffb8fe0c82d4afef6ef91972cbaf5feea100edc2f262750611b4be1f
|
|
|
|
post_patch() {
|
|
if [ "${CROSS_BUILD}" ]; then
|
|
vsed -i setup.py -e "s:/usr/include:${XBPS_CROSS_BASE}/usr/include:"
|
|
fi
|
|
}
|
|
|
|
post_install() {
|
|
vlicense ../COPYING
|
|
}
|
|
|
|
libxml2-python3_package() {
|
|
short_desc="${short_desc/Python2/Python3}"
|
|
pkg_install() {
|
|
vmove "usr/lib/python3*"
|
|
vlicense ../COPYING
|
|
}
|
|
}
|