blob: 805925fa4c8798210cda9e9a8cc10c5d0e36f203 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
 | #!/bin/sh
MAKEDEPS="python make "
DEPS="libxml2 libgcrypt"
PKG_VER=1.1.34
SOURCE=http://xmlsoft.org/sources/libxslt-$PKG_VER.tar.gz
DESC="XML stylesheet transformation library"
prepare () {
    sed -i s/3000/5000/ libxslt/transform.c doc/xsltproc.xml &&
    sed -i s/3000/5000/ libxslt/transform.c doc/xsltproc.1 &&
    sed -i -r '/max(Parser)?Depth/d' ./tests/fuzz/fuzz.c 
}
build () {
    ./configure --prefix=/usr --disable-static --without-python  &&
    make
}
package () {
    make DESTDIR=$PKG_DEST install
}
 |