aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAndrew Childs2013-01-28 13:22:17 +1300
committerAdam Vandenberg2013-01-29 13:50:55 -0800
commit942d2dcdb6d71cfdace045126eeba5a95d6ec2a2 (patch)
treeeb9ee57752d7d4b25dc54861216bbcff0347bbb7 /Library/Formula
parent32fd2cf3351a451256dfa17679c5cd4fead50e1c (diff)
downloadhomebrew-942d2dcdb6d71cfdace045126eeba5a95d6ec2a2.tar.bz2
opensp 1.5.2
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/opensp.rb18
1 files changed, 18 insertions, 0 deletions
diff --git a/Library/Formula/opensp.rb b/Library/Formula/opensp.rb
new file mode 100644
index 000000000..71566dde1
--- /dev/null
+++ b/Library/Formula/opensp.rb
@@ -0,0 +1,18 @@
+require 'formula'
+
+class Opensp < Formula
+ homepage 'http://openjade.sourceforge.net'
+ url 'http://sourceforge.net/projects/openjade/files/opensp/1.5.2/OpenSP-1.5.2.tar.gz'
+ sha1 'b4e903e980f8a8b3887396a24e067bef126e97d5'
+
+ depends_on 'gettext'
+
+ def install
+ ENV.append "LDFLAGS", "-lintl"
+ system "./configure", "--disable-debug", "--disable-dependency-tracking",
+ "--prefix=#{prefix}",
+ "--disable-doc-build",
+ "--enable-http"
+ system "make install"
+ end
+end