summaryrefslogtreecommitdiff
path: root/repo/core/libxml2.xibuild
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2021-12-23 15:43:35 +0000
committerdavidovski <david@davidovski.xyz>2021-12-23 15:43:35 +0000
commit3af7df2b3b06e516947f7979f7c7f3c25d94bbb9 (patch)
tree8730b9110bad0d6ccb78ccbf3cfa18365b705d9d /repo/core/libxml2.xibuild
parentf7d75caed1c9627523aa72f1a04f1b9af34bfcde (diff)
added openssh
Diffstat (limited to 'repo/core/libxml2.xibuild')
-rw-r--r--repo/core/libxml2.xibuild15
1 files changed, 15 insertions, 0 deletions
diff --git a/repo/core/libxml2.xibuild b/repo/core/libxml2.xibuild
new file mode 100644
index 0000000..e5c149e
--- /dev/null
+++ b/repo/core/libxml2.xibuild
@@ -0,0 +1,15 @@
+#!/bin/bash
+
+DEPS=(zlib readline ncurses xz icu)
+
+SOURCE=http://xmlsoft.org/sources/libxml2-2.9.12.tar.gz
+DESC="XML parsing library"
+
+build () {
+ ./configure --prefix=/usr \
+ --disable-static \
+ --with-history \
+ --with-python=/usr/bin/python3 &&
+ make
+ make DESTDIR=$PKG_DEST install
+}