diff options
| author | Geoff Cant | 2009-09-05 23:55:59 +0200 |
|---|---|---|
| committer | Max Howell | 2009-09-16 14:49:06 +0100 |
| commit | 9fd65033691792fa735a44e03ac369fae6aef5c2 (patch) | |
| tree | 6bcb2c32d2fd7ff1d7e090231509f20af018d1ec /Library | |
| parent | be2f766dc53de76b68ebc69a1dc22d6ba1029afe (diff) | |
| download | homebrew-9fd65033691792fa735a44e03ac369fae6aef5c2.tar.bz2 | |
Vilistextum formula
Vilistextum is a html to text / ascii converter specifically programmed to get
the best out of incorrect html.
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/vilistextum.rb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/vilistextum.rb b/Library/Formula/vilistextum.rb new file mode 100644 index 000000000..bf9a2c267 --- /dev/null +++ b/Library/Formula/vilistextum.rb @@ -0,0 +1,12 @@ +require 'brewkit' + +class Vilistextum <Formula + @url='http://bhaak.dyndns.org/vilistextum/vilistextum-2.6.9.tar.gz' + @homepage='http://bhaak.dyndns.org/vilistextum/' + @md5='5ba56ffdc56758da716bb46c3e0f517e' + + def install + system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking" + system "make install" + end +end |
