aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorLars2010-11-02 12:27:11 +1100
committerAdam Vandenberg2010-11-04 08:41:30 -0700
commit7f1be4f5d37b4d48cf035e917a9f739c55805914 (patch)
tree9fd339fc8cda47f2b2973bed3ddc51f0cd800efd /Library/Formula
parent071071ac1d75a0be3d3743706257fd357c8e6e5b (diff)
downloadhomebrew-7f1be4f5d37b4d48cf035e917a9f739c55805914.tar.bz2
New formula: scamper
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/scamper.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/scamper.rb b/Library/Formula/scamper.rb
new file mode 100644
index 000000000..e7d7ecde2
--- /dev/null
+++ b/Library/Formula/scamper.rb
@@ -0,0 +1,13 @@
+require 'formula'
+
+class Scamper <Formula
+ url 'http://www.wand.net.nz/scamper/scamper-cvs-20101102.tar.gz'
+ homepage 'http://www.wand.net.nz/scamper/'
+ md5 'd2540fe85c56a3ea146ba4d10525433c'
+
+ def install
+ system "./configure", "--disable-debug", "--disable-dependency-tracking",
+ "--prefix=#{prefix}"
+ system "make install"
+ end
+end