aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorTeddy Brown2011-12-07 15:23:06 -0500
committerAdam Vandenberg2012-03-07 21:30:57 -0800
commit4732eb8d91fda20901a6177bb737ea4e5aba6535 (patch)
tree67d0812275ea677aacbc1f2d46e2149c6de6be12 /Library
parenta444b984c301d1a86cb9ee975751231eabcd3505 (diff)
downloadhomebrew-4732eb8d91fda20901a6177bb737ea4e5aba6535.tar.bz2
moon-buggy 1.0
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/moon-buggy.rb19
1 files changed, 19 insertions, 0 deletions
diff --git a/Library/Formula/moon-buggy.rb b/Library/Formula/moon-buggy.rb
new file mode 100644
index 000000000..679377f1d
--- /dev/null
+++ b/Library/Formula/moon-buggy.rb
@@ -0,0 +1,19 @@
+require 'formula'
+
+class MoonBuggy < Formula
+ homepage 'http://www.seehuhn.de/pages/moon-buggy'
+ url 'http://m.seehuhn.de/programs/moon-buggy-1.0.tar.gz'
+ md5 '4da97ea40eca686f6f8b164d8b927e38'
+
+ def install
+ system "./configure", "--disable-debug", "--disable-dependency-tracking",
+ "--prefix=#{prefix}",
+ "--mandir=#{man}",
+ "--infodir=#{info}"
+ system "make install"
+ end
+
+ def test
+ system "moon-buggy"
+ end
+end