diff options
author | Danny Rawlins <romster@shortcircuit.net.au> | 2007-01-30 16:06:17 +1100 |
---|---|---|
committer | Danny Rawlins <romster@shortcircuit.net.au> | 2007-01-30 16:06:17 +1100 |
commit | bc0135d112e9bae8fabfba034bdef9135f2a8a1a (patch) | |
tree | c6951dd45cd502bd5acdb4c113d9a904a1b7f45f /tidy | |
parent | 554d7cdb7990b1ea35f684c7e8f7d7da596fbd5c (diff) | |
download | contrib-bc0135d112e9bae8fabfba034bdef9135f2a8a1a.tar.gz contrib-bc0135d112e9bae8fabfba034bdef9135f2a8a1a.tar.xz |
tidy: initial add
Diffstat (limited to 'tidy')
-rw-r--r-- | tidy/.footprint | 15 | ||||
-rw-r--r-- | tidy/.md5sum | 0 | ||||
-rw-r--r-- | tidy/Pkgfile | 30 |
3 files changed, 45 insertions, 0 deletions
diff --git a/tidy/.footprint b/tidy/.footprint new file mode 100644 index 000000000..e6917a992 --- /dev/null +++ b/tidy/.footprint @@ -0,0 +1,15 @@ +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/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..a1bad2d35 --- /dev/null +++ b/tidy/Pkgfile @@ -0,0 +1,30 @@ +# Description: HTML/XML/XHTML cleanup tool. +# URL: http://tidy.sourceforge.net/ +# Maintainer: Danny Rawlins, romster at shortcircuit dot net dot au +# Packager: Han Boetes, han mijncomputer dot nl +# Depends on: cvs + +name=tidy +version=cvs-$(date '+%Y%m%d') +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 DESTDIR=$PKG install +} + |