diff options
author | Thierry N <thierryn1 at hispeed dot ch> | 2009-08-29 14:31:33 +0200 |
---|---|---|
committer | Thierry N <thierryn1 at hispeed dot ch> | 2009-08-29 14:31:33 +0200 |
commit | d2054350c574b9fc6656e8c76e38a57c9fdb9786 (patch) | |
tree | 7e33c87dd056499ce0667e9174bd498cb1aa1a11 | |
parent | 2b2edd0c5cc20076b581abef02a009ee57ab1d7d (diff) | |
download | nutyx-extra-d2054350c574b9fc6656e8c76e38a57c9fdb9786.tar.gz nutyx-extra-d2054350c574b9fc6656e8c76e38a57c9fdb9786.tar.bz2 nutyx-extra-d2054350c574b9fc6656e8c76e38a57c9fdb9786.tar.xz nutyx-extra-d2054350c574b9fc6656e8c76e38a57c9fdb9786.zip |
Ajout de texi2html#1.64-1
-rw-r--r-- | extra/texi2html/.footprint | 9 | ||||
-rw-r--r-- | extra/texi2html/.md5sum | 1 | ||||
-rw-r--r-- | extra/texi2html/Pkgfile | 21 |
3 files changed, 31 insertions, 0 deletions
diff --git a/extra/texi2html/.footprint b/extra/texi2html/.footprint new file mode 100644 index 000000000..bde88a81b --- /dev/null +++ b/extra/texi2html/.footprint @@ -0,0 +1,9 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/texi2html +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/info/ +-rw-r--r-- root/root usr/share/info/texi2html.info.gz +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/texi2html.1.gz diff --git a/extra/texi2html/.md5sum b/extra/texi2html/.md5sum new file mode 100644 index 000000000..014590090 --- /dev/null +++ b/extra/texi2html/.md5sum @@ -0,0 +1 @@ +f0fa30e58ed930431c43a07d907593f5 texi2html-1.64.tar.gz diff --git a/extra/texi2html/Pkgfile b/extra/texi2html/Pkgfile new file mode 100644 index 000000000..f8996af78 --- /dev/null +++ b/extra/texi2html/Pkgfile @@ -0,0 +1,21 @@ +# Description: Permet la conversion des fichiers textes en fichier html +# URL: http://www.mathematik.uni-kl.de/~obachman/Texi2html/ +# Maintainer: NuTyX core team +# Packager: thierryn1 at hispeed dot ch +# Depends on: perl + +name=texi2html +version=1.64 +release=1 +source=(http://www.mathematik.uni-kl.de/~obachman/Texi2html/Distrib/$name-$version.tar.gz) + +build() { + cd $name-$version + ./configure --prefix=/usr + sed -i "s|mandir = /usr/man|mandir = \${prefix}/share/man|g" Makefile + make -j3 + make prefix=$PKG/usr install + mv $PKG/usr/info $PKG/usr/share/info + rm -r $PKG/usr/share/info/dir + rm -r $PKG/usr/html +} |