CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
python: added overlay port
[ports/opt-arm64.git] / libxslt / Pkgfile
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
8 name=libxslt
9 version=1.1.28
10 release=3
11 source=(ftp://xmlsoft.org/libxml2/$name-$version.tar.gz
12 CVE-2015-7995.patch)
13
14 build() {
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 }