summaryrefslogtreecommitdiff
path: root/repo/system/libxslt
diff options
context:
space:
mode:
Diffstat (limited to 'repo/system/libxslt')
-rw-r--r--repo/system/libxslt/libxslt.xibuild24
1 files changed, 24 insertions, 0 deletions
diff --git a/repo/system/libxslt/libxslt.xibuild b/repo/system/libxslt/libxslt.xibuild
new file mode 100644
index 0000000..805925f
--- /dev/null
+++ b/repo/system/libxslt/libxslt.xibuild
@@ -0,0 +1,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
+}