html-xml-utils: initial commit

This commit is contained in:
Alan Mizrahi 2016-11-08 17:26:10 +09:00
parent 7899150d68
commit abdb1afc59
3 changed files with 89 additions and 0 deletions

67
html-xml-utils/.footprint Normal file
View File

@ -0,0 +1,67 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/asc2xml
-rwxr-xr-x root/root usr/bin/hxaddid
-rwxr-xr-x root/root usr/bin/hxcite
-rwxr-xr-x root/root usr/bin/hxcite-mkbib
-rwxr-xr-x root/root usr/bin/hxclean
-rwxr-xr-x root/root usr/bin/hxcopy
-rwxr-xr-x root/root usr/bin/hxcount
-rwxr-xr-x root/root usr/bin/hxextract
-rwxr-xr-x root/root usr/bin/hxincl
-rwxr-xr-x root/root usr/bin/hxindex
-rwxr-xr-x root/root usr/bin/hxmkbib
-rwxr-xr-x root/root usr/bin/hxmultitoc
-rwxr-xr-x root/root usr/bin/hxname2id
-rwxr-xr-x root/root usr/bin/hxnormalize
-rwxr-xr-x root/root usr/bin/hxnsxml
-rwxr-xr-x root/root usr/bin/hxnum
-rwxr-xr-x root/root usr/bin/hxpipe
-rwxr-xr-x root/root usr/bin/hxprintlinks
-rwxr-xr-x root/root usr/bin/hxprune
-rwxr-xr-x root/root usr/bin/hxref
-rwxr-xr-x root/root usr/bin/hxremove
-rwxr-xr-x root/root usr/bin/hxselect
-rwxr-xr-x root/root usr/bin/hxtabletrans
-rwxr-xr-x root/root usr/bin/hxtoc
-rwxr-xr-x root/root usr/bin/hxuncdata
-rwxr-xr-x root/root usr/bin/hxunent
-rwxr-xr-x root/root usr/bin/hxunpipe
-rwxr-xr-x root/root usr/bin/hxunxmlns
-rwxr-xr-x root/root usr/bin/hxwls
-rwxr-xr-x root/root usr/bin/hxxmlns
-rwxr-xr-x root/root usr/bin/xml2asc
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man1/
-rw-r--r-- root/root usr/share/man/man1/asc2xml.1.gz
-rw-r--r-- root/root usr/share/man/man1/hxaddid.1.gz
-rw-r--r-- root/root usr/share/man/man1/hxcite-mkbib.1.gz
-rw-r--r-- root/root usr/share/man/man1/hxcite.1.gz
-rw-r--r-- root/root usr/share/man/man1/hxclean.1.gz
-rw-r--r-- root/root usr/share/man/man1/hxcopy.1.gz
-rw-r--r-- root/root usr/share/man/man1/hxcount.1.gz
-rw-r--r-- root/root usr/share/man/man1/hxextract.1.gz
-rw-r--r-- root/root usr/share/man/man1/hxincl.1.gz
-rw-r--r-- root/root usr/share/man/man1/hxindex.1.gz
-rw-r--r-- root/root usr/share/man/man1/hxmkbib.1.gz
-rw-r--r-- root/root usr/share/man/man1/hxmultitoc.1.gz
-rw-r--r-- root/root usr/share/man/man1/hxname2id.1.gz
-rw-r--r-- root/root usr/share/man/man1/hxnormalize.1.gz
-rw-r--r-- root/root usr/share/man/man1/hxnsxml.1.gz
-rw-r--r-- root/root usr/share/man/man1/hxnum.1.gz
-rw-r--r-- root/root usr/share/man/man1/hxpipe.1.gz
-rw-r--r-- root/root usr/share/man/man1/hxprintlinks.1.gz
-rw-r--r-- root/root usr/share/man/man1/hxprune.1.gz
-rw-r--r-- root/root usr/share/man/man1/hxref.1.gz
-rw-r--r-- root/root usr/share/man/man1/hxremove.1.gz
-rw-r--r-- root/root usr/share/man/man1/hxselect.1.gz
-rw-r--r-- root/root usr/share/man/man1/hxtabletrans.1.gz
-rw-r--r-- root/root usr/share/man/man1/hxtoc.1.gz
-rw-r--r-- root/root usr/share/man/man1/hxuncdata.1.gz
-rw-r--r-- root/root usr/share/man/man1/hxunent.1.gz
-rw-r--r-- root/root usr/share/man/man1/hxunpipe.1.gz
-rw-r--r-- root/root usr/share/man/man1/hxunxmlns.1.gz
-rw-r--r-- root/root usr/share/man/man1/hxwls.1.gz
-rw-r--r-- root/root usr/share/man/man1/hxxmlns.1.gz
-rw-r--r-- root/root usr/share/man/man1/xml2asc.1.gz

1
html-xml-utils/.md5sum Normal file
View File

@ -0,0 +1 @@
3b30e2074de8665c82f4e503178c3efd html-xml-utils-7.1.tar.gz

21
html-xml-utils/Pkgfile Normal file
View File

@ -0,0 +1,21 @@
# Description: Utilities for manipulating HTML and XML files
# URL: https://www.w3.org/Tools/HTML-XML-utils/
# Maintainer: Alan Mizrahi, alan at mizrahi dot com dot ve
# Depends on:
name=html-xml-utils
version=7.1
release=1
source=(https://www.w3.org/Tools/HTML-XML-utils/$name-$version.tar.gz)
build () {
cd $name-$version
./configure \
--prefix=/usr
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/share/doc
}