diff options
author | Han Boetes <han@mijncomputer.nl> | 2006-11-13 21:12:21 +0100 |
---|---|---|
committer | Han Boetes <han@mijncomputer.nl> | 2006-11-13 21:12:21 +0100 |
commit | 32295a9faf0f964a313a84bb5a4e3fdeaf15e72f (patch) | |
tree | 48bd60cc85026b7f5effe956cd01e09d1e66234c /tidy | |
parent | 4d6af94f215944409f18f85d1804bc04c3d32efd (diff) | |
download | contrib-32295a9faf0f964a313a84bb5a4e3fdeaf15e72f.tar.gz contrib-32295a9faf0f964a313a84bb5a4e3fdeaf15e72f.tar.xz |
abiword: initial release
Diffstat (limited to 'tidy')
-rw-r--r-- | tidy/.footprint | 16 | ||||
-rw-r--r-- | tidy/.md5sum | 0 | ||||
-rw-r--r-- | tidy/Pkgfile | 28 |
3 files changed, 44 insertions, 0 deletions
diff --git a/tidy/.footprint b/tidy/.footprint new file mode 100644 index 000000000..fdd46a386 --- /dev/null +++ b/tidy/.footprint @@ -0,0 +1,16 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/tab2space +-rwxr-xr-x root/root usr/bin/tidy +drwxr-xr-x root/root usr/include/ +-rw-r--r-- root/root usr/include/buffio.h +-rw-r--r-- root/root usr/include/fileio.h +-rw-r--r-- root/root usr/include/platform.h +-rw-r--r-- root/root usr/include/tidy.h +-rw-r--r-- root/root usr/include/tidyenum.h +drwxr-xr-x root/root usr/lib/ +lrwxrwxrwx root/root usr/lib/libtidy-0.99.so.0 -> libtidy-0.99.so.0.0.0 +-rwxr-xr-x root/root usr/lib/libtidy-0.99.so.0.0.0 +-rw-r--r-- root/root usr/lib/libtidy.a +-rwxr-xr-x root/root usr/lib/libtidy.la +lrwxrwxrwx root/root usr/lib/libtidy.so -> libtidy-0.99.so.0.0.0 diff --git a/tidy/.md5sum b/tidy/.md5sum new file mode 100644 index 000000000..e69de29bb --- /dev/null +++ b/tidy/.md5sum diff --git a/tidy/Pkgfile b/tidy/Pkgfile new file mode 100644 index 000000000..2214ddfc1 --- /dev/null +++ b/tidy/Pkgfile @@ -0,0 +1,28 @@ +# Description: HTML/XML/XHTML cleanup tool +# Maintainer: Han Boetes <han@mijncomputer.nl> +# Packager: Han Boetes <han@mijncomputer.nl> +# URL: http://tidy.sourceforge.net/ +# Depends on: cvs + +name=tidy +version=cvs +release=1 +source= + +build () +{ + + cd $PKGMK_SOURCE_DIR + if cd tidy ; then + cvs -z3 -q up -dAP + else + cvs -d:pserver:anonymous@tidy.cvs.sourceforge.net:/cvsroot/tidy co tidy + fi + cp -r $PKGMK_SOURCE_DIR/tidy $SRC + cd $SRC/tidy + sed -i 's|typedef unsigned long ulong;||' include/platform.h + /bin/sh build/gnuauto/setup.sh + ./configure --prefix=/usr + make + make install DESTDIR=$PKG +} |