aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorMichael Dippery2010-10-06 17:27:20 -0400
committerAdam Vandenberg2010-11-19 06:46:17 -0800
commitc888c5212e65629323cf82031288046bdcc11f7e (patch)
tree7669902752b9bb5b85426df28f0b0704c7ca4bf4 /Library/Formula
parente12b8ec39b910af1ec09c2335643757f9bc0ab8b (diff)
downloadhomebrew-c888c5212e65629323cf82031288046bdcc11f7e.tar.bz2
shakespeare: New formula
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/shakespeare.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/shakespeare.rb b/Library/Formula/shakespeare.rb
new file mode 100644
index 000000000..ea07c7db2
--- /dev/null
+++ b/Library/Formula/shakespeare.rb
@@ -0,0 +1,15 @@
+require 'formula'
+
+class Shakespeare < Formula
+ url 'http://shakespearelang.sf.net/download/spl-1.2.1.tar.gz'
+ homepage 'http://shakespearelang.sourceforge.net/'
+ md5 'c31de8415af80819eb944a1cecadddde'
+
+ def install
+ system "make install"
+ bin.install 'spl/bin/spl2c'
+ include.install 'spl/include/spl.h'
+ lib.install 'spl/lib/libspl.a'
+ prefix.install 'NEWS' # Also include NEWS file in prefix, why not?
+ end
+end