diff options
Diffstat (limited to 'opt/xmlto/MAKEPKG')
| -rw-r--r-- | opt/xmlto/MAKEPKG | 36 |
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 |
