61b2307139
brewkit.rb changes ENV destructively, so lets not do that everytime a formula is required. Now it's possible for other tools to require a formula description without worrying about side-effects.
12 lines
333 B
Ruby
12 lines
333 B
Ruby
require 'formula'
|
|
|
|
class Pdftohtml <Formula
|
|
@url='http://downloads.sourceforge.net/project/pdftohtml/Experimental%20Versions/pdftohtml%200.40/pdftohtml-0.40a.tar.gz'
|
|
@homepage='http://pdftohtml.sourceforge.net/'
|
|
@md5='2d82996faaf2b9439f8395743c1c163d'
|
|
|
|
def install
|
|
system "make"
|
|
bin.install "src/pdftohtml"
|
|
end
|
|
end
|