CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
firefox: initial import
[ports/opt-arm64.git] / libxslt / Pkgfile
CommitLineData
9aa43069
VM
1# Description: XSL Transformations library.
2# URL: http://xmlsoft.org/XSLT/
3# Maintainer: Danny Rawlins, crux at romster dot me
4# Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu
5# Packager: Tilman Sauerbeck, tilman at crux dot nu
6# Depends on: libxml2 zlib xz
7
8name=libxslt
9version=1.1.28
10release=3
11source=(ftp://xmlsoft.org/libxml2/$name-$version.tar.gz
12 CVE-2015-7995.patch)
13
14build() {
15 cd $name-$version
16
17 patch -p1 -i $SRC/CVE-2015-7995.patch
18
19 ./configure --prefix=/usr \
20 --without-python \
21 --without-crypto \
22 --build=aarch64-unknown-linux-gnueabi
23
24 make
25 make DESTDIR=$PKG install
26
27 rm -r $PKG/usr/share/doc
28}