forked from ports/contrib
23 lines
447 B
Plaintext
23 lines
447 B
Plaintext
# 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:
|
|
|
|
name=tidy
|
|
version=20070217
|
|
release=1
|
|
source=(http://romster.shortcircuit.net.au/crux/source/tidy-snapshot-$version.tar.bz2)
|
|
|
|
build() {
|
|
cd tidy
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--disable-static
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|
|
|