Juergen Daubert
f7aefd9233
security fixes for the following CVEs: CVE-2017-5969, CVE-2017-9047, CVE-2017-9048, CVE-2017-9049, CVE-2017-9050, CVE-2016-4658, CVE-2016-5131
20 lines
521 B
Plaintext
20 lines
521 B
Plaintext
# Description: XML library version 2
|
|
# URL: http://xmlsoft.org/
|
|
# Maintainer: Juergen Daubert, jue at crux dot nu
|
|
# Packager: Daniel Mueller, daniel at danm dot de
|
|
# Depends on: zlib
|
|
|
|
name=libxml2
|
|
version=2.9.4-68
|
|
release=1
|
|
#source=(ftp://xmlsoft.org/libxml2/$name-$version.tar.xz)
|
|
source=(http://crux.s3.amazonaws.com/dist/$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}
|
|
}
|