aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/pdftohtml.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/pdftohtml.rb b/Library/Formula/pdftohtml.rb
new file mode 100644
index 000000000..763245ed9
--- /dev/null
+++ b/Library/Formula/pdftohtml.rb
@@ -0,0 +1,13 @@
+require 'brewkit'
+
+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"
+ system "mkdir -p #{prefix}/bin"
+ system "cp src/pdftohtml #{prefix}/bin"
+ end
+end