aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorDavid Höppner2010-01-08 18:17:12 +0100
committerDavid Höppner2010-01-30 14:18:04 +0100
commitedd2d5f8c5833d26d05e02c9e33150cc2c87c120 (patch)
treefb5acf000f5a0d6c36b60b9105fb62d3fbd335fa /Library/Formula
parent6e9b571e66871fd70aaadaf32c276cae1e67f6cf (diff)
downloadhomebrew-edd2d5f8c5833d26d05e02c9e33150cc2c87c120.tar.bz2
Color Code
ColorCode is a free advanced MasterMind clone with lots of different game variants, from the very easy up to really challenging ones.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/color-code.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/color-code.rb b/Library/Formula/color-code.rb
new file mode 100644
index 000000000..17b8b451d
--- /dev/null
+++ b/Library/Formula/color-code.rb
@@ -0,0 +1,14 @@
+require 'formula'
+
+class ColorCode <Formula
+ url 'http://test.laebisch.com/ColorCode-0.5.5.tar.gz'
+ homepage 'http://colorcode.laebisch.com/'
+ md5 'f41657dccdb9305c3b5532f701067630'
+
+ depends_on 'qt'
+
+ def install
+ system "qmake; make"
+ prefix.install "ColorCode.app"
+ end
+end