blob: 23d041bf00b6a0ca6ae1ce1d9db353c138e7eae9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
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
|