aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/remake.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/Library/Formula/remake.rb b/Library/Formula/remake.rb
new file mode 100644
index 000000000..c8254388d
--- /dev/null
+++ b/Library/Formula/remake.rb
@@ -0,0 +1,17 @@
+require 'formula'
+
+class Remake < Formula
+ homepage 'http://bashdb.sourceforge.net/remake/'
+ url 'http://downloads.sourceforge.net/bashdb/remake/3.82%2Bdbg-0.9/remake-3.82%2Bdbg0.9.tar.gz'
+ sha1 'bac6b2d2327ef4bcafe529901daa28c6645e83c7'
+
+ def install
+ system "./configure", "--disable-debug", "--disable-dependency-tracking",
+ "--prefix=#{prefix}"
+ system "make", "install"
+ end
+
+ test do
+ system bin/"remake", "-v"
+ end
+end