diff options
author | Danny Rawlins <monster.romster@gmail.com> | 2014-12-05 20:51:37 +1100 |
---|---|---|
committer | Danny Rawlins <monster.romster@gmail.com> | 2014-12-05 20:51:37 +1100 |
commit | 85ddc06ad095109e03159d873d1fc4b72c6855d8 (patch) | |
tree | 697700ee47380133b037df8b88ae494f4162be1b /xmlto | |
parent | 6edb8f983b988e674eb4e84855f063e38707b5e0 (diff) | |
download | contrib-85ddc06ad095109e03159d873d1fc4b72c6855d8.tar.gz contrib-85ddc06ad095109e03159d873d1fc4b72c6855d8.tar.xz |
xmlto: romster -> contrib
Diffstat (limited to 'xmlto')
-rw-r--r-- | xmlto/.footprint | 49 | ||||
-rw-r--r-- | xmlto/.md5sum | 1 | ||||
-rw-r--r-- | xmlto/Pkgfile | 22 |
3 files changed, 72 insertions, 0 deletions
diff --git a/xmlto/.footprint b/xmlto/.footprint new file mode 100644 index 000000000..2793cfbfe --- /dev/null +++ b/xmlto/.footprint @@ -0,0 +1,49 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/xmlif +-rwxr-xr-x root/root usr/bin/xmlto +drwxr-xr-x root/root usr/man/ +drwxr-xr-x root/root usr/man/man1/ +-rw-r--r-- root/root usr/man/man1/xmlif.1.gz +-rw-r--r-- root/root usr/man/man1/xmlto.1.gz +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/xmlto/ +drwxr-xr-x root/root usr/share/xmlto/format/ +drwxr-xr-x root/root usr/share/xmlto/format/docbook/ +-rw-r--r-- root/root usr/share/xmlto/format/docbook/awt +-rw-r--r-- root/root usr/share/xmlto/format/docbook/dvi +-rw-r--r-- root/root usr/share/xmlto/format/docbook/epub +-rw-r--r-- root/root usr/share/xmlto/format/docbook/fo +-rw-r--r-- root/root usr/share/xmlto/format/docbook/html +-rw-r--r-- root/root usr/share/xmlto/format/docbook/html-nochunks +-rw-r--r-- root/root usr/share/xmlto/format/docbook/htmlhelp +-rw-r--r-- root/root usr/share/xmlto/format/docbook/javahelp +-rw-r--r-- root/root usr/share/xmlto/format/docbook/man +-rw-r--r-- root/root usr/share/xmlto/format/docbook/mif +-rw-r--r-- root/root usr/share/xmlto/format/docbook/pcl +-rw-r--r-- root/root usr/share/xmlto/format/docbook/pdf +-rw-r--r-- root/root usr/share/xmlto/format/docbook/ps +-rw-r--r-- root/root usr/share/xmlto/format/docbook/svg +-rw-r--r-- root/root usr/share/xmlto/format/docbook/txt +-rw-r--r-- root/root usr/share/xmlto/format/docbook/xhtml +-rw-r--r-- root/root usr/share/xmlto/format/docbook/xhtml-nochunks +drwxr-xr-x root/root usr/share/xmlto/format/fo/ +-rw-r--r-- root/root usr/share/xmlto/format/fo/awt +-rw-r--r-- root/root usr/share/xmlto/format/fo/dvi +-rw-r--r-- root/root usr/share/xmlto/format/fo/mif +-rw-r--r-- root/root usr/share/xmlto/format/fo/pcl +-rw-r--r-- root/root usr/share/xmlto/format/fo/pdf +-rw-r--r-- root/root usr/share/xmlto/format/fo/ps +-rw-r--r-- root/root usr/share/xmlto/format/fo/svg +-rw-r--r-- root/root usr/share/xmlto/format/fo/txt +drwxr-xr-x root/root usr/share/xmlto/format/xhtml1/ +-rw-r--r-- root/root usr/share/xmlto/format/xhtml1/awt +-rw-r--r-- root/root usr/share/xmlto/format/xhtml1/dvi +-rw-r--r-- root/root usr/share/xmlto/format/xhtml1/fo +-rw-r--r-- root/root usr/share/xmlto/format/xhtml1/mif +-rw-r--r-- root/root usr/share/xmlto/format/xhtml1/pcl +-rw-r--r-- root/root usr/share/xmlto/format/xhtml1/pdf +-rw-r--r-- root/root usr/share/xmlto/format/xhtml1/ps +-rw-r--r-- root/root usr/share/xmlto/format/xhtml1/svg +-rw-r--r-- root/root usr/share/xmlto/format/xhtml1/txt +-rw-r--r-- root/root usr/share/xmlto/xmlto.mak diff --git a/xmlto/.md5sum b/xmlto/.md5sum new file mode 100644 index 000000000..b19abb2c7 --- /dev/null +++ b/xmlto/.md5sum @@ -0,0 +1 @@ +c90a47c774e0963581c1ba57235f64f4 xmlto-0.0.26.tar.bz2 diff --git a/xmlto/Pkgfile b/xmlto/Pkgfile new file mode 100644 index 000000000..5d924793b --- /dev/null +++ b/xmlto/Pkgfile @@ -0,0 +1,22 @@ +# Description: Convert xml to many other formats. +# URL: http://cyberelk.net/tim/software/xmlto/ +# Maintainer: Danny Rawlins, crux at romster dot me +# Packager: Matt Housh, jaeger at morpheus dot net +# Depends on: docbook-xsl + +name=xmlto +version=0.0.26 +release=1 +source=(https://fedorahosted.org/releases/x/m/xmlto/$name-$version.tar.bz2) + +build() { + cd $name-$version + + ./configure \ + --prefix=/usr \ + --mandir=/usr/man + + make + make DESTDIR=$PKG install +} + |