diff options
author | Danny Rawlins <romster@shortcircuit.net.au> | 2007-02-17 20:25:28 +1100 |
---|---|---|
committer | Danny Rawlins <romster@shortcircuit.net.au> | 2007-02-17 20:25:28 +1100 |
commit | 8b8b775b3de9ffb4e270c74e214f31a5e4306a53 (patch) | |
tree | ace59aed843b57c97c2eaf2fe24403041cdc0674 /tidy | |
parent | 61a1064bbe05370d8e81d498a92bb28cc1853db1 (diff) | |
download | contrib-8b8b775b3de9ffb4e270c74e214f31a5e4306a53.tar.gz contrib-8b8b775b3de9ffb4e270c74e214f31a5e4306a53.tar.xz |
tidy: moved to using snapshots
Diffstat (limited to 'tidy')
-rw-r--r-- | tidy/.footprint | 1 | ||||
-rw-r--r-- | tidy/.md5sum | 1 | ||||
-rw-r--r-- | tidy/Pkgfile | 24 |
3 files changed, 9 insertions, 17 deletions
diff --git a/tidy/.footprint b/tidy/.footprint index e6917a992..06532105d 100644 --- a/tidy/.footprint +++ b/tidy/.footprint @@ -10,6 +10,5 @@ drwxr-xr-x root/root usr/include/ 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 index e69de29bb..6e74d2272 100644 --- a/tidy/.md5sum +++ b/tidy/.md5sum @@ -0,0 +1 @@ +024006ff6f953da47a45436a359ba809 tidy-snapshot-20070217.tar.bz2 diff --git a/tidy/Pkgfile b/tidy/Pkgfile index a1bad2d35..f7a05edf0 100644 --- a/tidy/Pkgfile +++ b/tidy/Pkgfile @@ -2,28 +2,20 @@ # 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 +# Depends on: name=tidy -version=cvs-$(date '+%Y%m%d') +version=20070217 release=1 -source=() +source=(http://romster.shortcircuit.net.au/crux/source/tidy-snapshot-$version.tar.bz2) build() { - cd $PKGMK_SOURCE_DIR + cd tidy + + ./configure \ + --prefix=/usr \ + --disable-static - 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 } |