summaryrefslogtreecommitdiff
path: root/opt/xmlto/MAKEPKG
diff options
context:
space:
mode:
authorrawnix ports <ports@rawnix.org>2026-09-26 18:19:05 +0000
committerrawnix ports <ports@rawnix.org>2026-09-26 18:19:05 +0000
commitc82e88dd00d1b0b7fcfb4e5628d99611388cef6f (patch)
tree56d864b5a5c6c145edd96178ae219a8f90e191a6 /opt/xmlto/MAKEPKG
downloadports-c82e88dd00d1b0b7fcfb4e5628d99611388cef6f.tar.gz
sync 2026-09-26 18:19 UTC
1672 files changed, 151396 insertions(+)
Diffstat (limited to 'opt/xmlto/MAKEPKG')
-rw-r--r--opt/xmlto/MAKEPKG36
1 files changed, 36 insertions, 0 deletions
diff --git a/opt/xmlto/MAKEPKG b/opt/xmlto/MAKEPKG
new file mode 100644
index 0000000..023b8f5
--- /dev/null
+++ b/opt/xmlto/MAKEPKG
@@ -0,0 +1,36 @@
+#!/bin/mkpkg
+# description: Simple shell script frontend to XSLT processors for DocBook conversion
+# url: https://pagure.io/xmlto
+
+name=xmlto
+version=0.0.29
+release=1
+depends=(bash libxslt util-linux)
+makedeps=(autoconf automake flex docbook-xsl libxslt)
+
+source=(https://pagure.io/xmlto/archive/${version}/xmlto-${version}.tar.gz)
+renames=($name-$version.tar.gz)
+
+sha256sums=(
+ "40504db68718385a4eaa9154a28f59e51e59d006d1aa14f5bc9d6fded1d6017a"
+)
+
+build() {
+ cd xmlto-$version
+
+ autoreconf -fi
+
+ ./configure \
+ --prefix=/usr
+
+ make
+
+ make DESTDIR="$PKG" install
+}
+
+signify() {
+ untrusted comment: public key
+ RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
+}
+
+# vim: filetype=sh