e56a96ad71
-Updated url and md5 to download the 0.9 tarball Closes Homebrew/homebrew#8702. Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
16 lines
385 B
Ruby
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
|