summaryrefslogtreecommitdiff
path: root/repo/core/libxslt.xibuild
blob: b079be100d113d4e74dfd5d0e5296efb4eca0376 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/bash

DEPS=(libxml2 libgcrypt)

SOURCE=http://xmlsoft.org/sources/libxslt-1.1.34.tar.gz
DESC="XML stylesheet transformation library"


build () {
    sed -i s/3000/5000/ libxslt/transform.c doc/xsltproc.{1,xml} &&
    sed -i -r '/max(Parser)?Depth/d' ./tests/fuzz/fuzz.c &&
    ./configure --prefix=/usr --disable-static --without-python  &&
    make
    sed -e 's@http://cdn.docbook.org/release/xsl@https://cdn.docbook.org/release/xsl-nons@' \
    -e 's@\$Date\$@31 October 2019@' -i doc/xsltproc.xml &&
        xsltproc/xsltproc --nonet doc/xsltproc.xml -o doc/xsltproc.1
    make DESTDIR=$PKG_DEST install
}