homebrew-core/Formula/blahtexml.rb
Juan Sebastian Casallas e56a96ad71 blahtexml: Update to 0.9
-Updated url and md5 to download the 0.9 tarball

Closes Homebrew/homebrew#8702.

Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
2011-11-21 08:50:14 -08:00

16 lines
385 B
Ruby

require 'formula'
class Blahtexml < Formula
url 'http://gva.noekeon.org/blahtexml/blahtexml-0.9-src.tar.gz'
homepage 'http://gva.noekeon.org/blahtexml/'
md5 'ed790599223c2f8f6d205be8988882de'
depends_on 'xerces-c'
def install
system "/usr/bin/make blahtex-mac"
bin.install('blahtex')
system "/usr/bin/make blahtexml-mac"
bin.install('blahtexml')
end
end