opt/libxml2/Pkgfile

33 lines
612 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Description: XML library version 2
2021-05-14 13:32:54 +02:00
# URL: http://xmlsoft.org/
# Maintainer: Juergen Daubert, jue at crux dot nu
# Depends on: zlib xz
2006-02-23 16:26:10 +01:00
name=libxml2
2024-02-05 10:59:46 +01:00
version=2.12.5
release=2
2022-08-22 16:59:02 +02:00
source=(https://download.gnome.org/sources/libxml2/${version:0:4}/$name-$version.tar.xz)
2006-02-23 16:26:10 +01:00
2021-05-14 13:32:54 +02:00
build() {
cd $name-$version
2023-05-02 20:07:15 +02:00
export PYTHON=/usr/bin/python3
./configure \
--prefix=/usr \
2023-05-02 20:07:15 +02:00
--sysconfdir=/etc
2021-05-14 13:32:54 +02:00
make
make DESTDIR=$PKG install
2023-05-02 20:07:15 +02:00
if prt-get isinst python
then
export PYTHON=/usr/bin/python
./configure \
--prefix=/usr \
--sysconfdir=/etc
make
make DESTDIR=$PKG install
fi
2021-05-14 13:32:54 +02:00
rm -r $PKG/usr/share/{doc,gtk-doc}
2006-02-23 16:26:10 +01:00
}