diff options
-rw-r--r-- | repo/core/libxslt.xibuild | 14 | ||||
-rw-r--r-- | repo/core/xmlto.xibuild | 14 |
2 files changed, 28 insertions, 0 deletions
diff --git a/repo/core/libxslt.xibuild b/repo/core/libxslt.xibuild new file mode 100644 index 0000000..1a94e1b --- /dev/null +++ b/repo/core/libxslt.xibuild @@ -0,0 +1,14 @@ +#!/bin/bash + +DEPS=(libxml2 libgcrypt) + +SOURCE=https://gitlab.gnome.org/GNOME/libxslt.git +BRANCH=v1.1.34 +DESC="XML stylesheet transformation library" + + +build () { + ./autogen.sh --prefix=/usr + make + make DESTDIR=$PKG_DEST install +} diff --git a/repo/core/xmlto.xibuild b/repo/core/xmlto.xibuild new file mode 100644 index 0000000..42389cb --- /dev/null +++ b/repo/core/xmlto.xibuild @@ -0,0 +1,14 @@ +#!/bin/bash + +DEPS=(libxslt) + +SOURCE=https://pagure.io/xmlto +BRANCH= +DESC="Convert xml to many other formats" + + +build () { + ./configure --prefix=/usr + make + make DESTDIR=$PKG_DEST install +} |