aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorDevin Weaver2011-02-07 16:48:01 -0500
committerMike McQuaid2011-02-12 17:55:07 +0000
commit50ab2b3883dba6802c9708463358ddcf84d20838 (patch)
tree06ee3d80fd0d4d3381eb719a8ba5594e15534e2b /Library/Formula
parent1af39e833c3d3b4291df91b741529b89d0aa0abd (diff)
downloadhomebrew-50ab2b3883dba6802c9708463358ddcf84d20838.tar.bz2
Adds new Formula: robotfindskitten
A Zen Simmulator where a robot (fuels by the love for a kitten) findskitten. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/robotfindskitten.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/Library/Formula/robotfindskitten.rb b/Library/Formula/robotfindskitten.rb
new file mode 100644
index 000000000..4702d3439
--- /dev/null
+++ b/Library/Formula/robotfindskitten.rb
@@ -0,0 +1,17 @@
+require 'formula'
+
+class Robotfindskitten <Formula
+ url 'http://downloads.sourceforge.net/project/rfk/robotfindskitten-POSIX/rfk%20rises%20from%20the%20dead%21%20%20braaaains.../robotfindskitten-1.7320508.406.tar.gz'
+ homepage 'http://robotfindskitten.org/'
+ md5 '6b9cf314ffee0de52ed85ac5ba11d66b'
+
+ def install
+ system "./configure", "--disable-debug", "--disable-dependency-tracking",
+ "--prefix=#{prefix}"
+ system "make install"
+
+ # This project installs to 'games', but we want it in 'bin' so it symlinks in.
+ # Can't find a ./configure switch, so just rename it.
+ (prefix+"games").rename bin
+ end
+end