Juergen Daubert
d61ad97e4a
includes security fixes, see https://mail.gnome.org/archives/xml/2022-May/msg00000.html
18 lines
409 B
Plaintext
18 lines
409 B
Plaintext
# Description: XML library version 2
|
|
# URL: http://xmlsoft.org/
|
|
# Maintainer: Juergen Daubert, jue at crux dot nu
|
|
# Depends on: zlib xz
|
|
|
|
name=libxml2
|
|
version=2.9.14
|
|
release=1
|
|
source=(https://download.gnome.org/sources/libxml2/${version:0:3}/$name-$version.tar.xz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
./configure --prefix=/usr --without-python
|
|
make
|
|
make DESTDIR=$PKG install
|
|
rm -r $PKG/usr/share/{doc,gtk-doc}
|
|
}
|