diff options
| author | Steven Leung | 2013-10-25 13:28:06 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2013-11-11 20:44:00 -0800 |
| commit | c4abe760625f033f235e1838626c093f783d94a8 (patch) | |
| tree | a06dd66ea4d847e10935062639a2bf48c6e58cdd /Library/Formula/ekhtml.rb | |
| parent | eb8bd4e8b65111588729f174b423817967143341 (diff) | |
| download | homebrew-c4abe760625f033f235e1838626c093f783d94a8.tar.bz2 | |
ekhtml 0.3.2
Closes #23603.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/ekhtml.rb')
| -rw-r--r-- | Library/Formula/ekhtml.rb | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/ekhtml.rb b/Library/Formula/ekhtml.rb new file mode 100644 index 000000000..05aa3f7e2 --- /dev/null +++ b/Library/Formula/ekhtml.rb @@ -0,0 +1,14 @@ +require 'formula' + +class Ekhtml < Formula + homepage 'http://ekhtml.sourceforge.net/' + url 'http://downloads.sourceforge.net/project/ekhtml/ekhtml/0.3.2/ekhtml-0.3.2.tar.gz' + sha1 'd4e6c25964f7e110073f646950dc307e84d61f1b' + + def install + ENV.j1 + system "./configure", "--disable-dependency-tracking", + "--prefix=#{prefix}" + system "make", "install" + end +end |
