aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Lapinsky2010-08-09 23:05:50 -0700
committerAdam Vandenberg2010-08-15 18:27:15 -0700
commit333dab107b9a517ccef76ff3adee6b2cf1fe06af (patch)
tree7a8935469891df7d6c06bcc5bf084d0aade67100
parent3fa887ab11205128e498d8dab8f41a3089e152ee (diff)
downloadhomebrew-333dab107b9a517ccef76ff3adee6b2cf1fe06af.tar.bz2
Added formula: squirrel 2.2.4
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
-rw-r--r--Library/Formula/squirrel.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/squirrel.rb b/Library/Formula/squirrel.rb
new file mode 100644
index 000000000..e25786ff3
--- /dev/null
+++ b/Library/Formula/squirrel.rb
@@ -0,0 +1,16 @@
+require 'formula'
+
+class Squirrel <Formula
+ url 'http://downloads.sourceforge.net/project/squirrel/squirrel2/squirrel%202.2.4%20stable/squirrel_2.2.4_stable.tar.gz'
+ homepage 'http://www.squirrel-lang.org'
+ md5 'e411dfd1bcc5220aa80de53e4a5f094d'
+
+ def install
+ system "make"
+
+ prefix.install %w[bin include lib]
+
+ doc.install Dir['doc/*.pdf']
+ doc.install %w[etc samples]
+ end
+end