aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorMike Naberezny2013-10-14 15:32:27 -0700
committerAdam Vandenberg2013-10-16 06:15:25 -0700
commit70a0cc3d62a7ed6bbed4b78cb8a9f5315ad1f750 (patch)
treea1c93757f8ef4d3bfe8848708d6ba02e320fa844 /Library/Formula
parentee46f3c15a3690730790127f027de0f464532a4e (diff)
downloadhomebrew-70a0cc3d62a7ed6bbed4b78cb8a9f5315ad1f750.tar.bz2
acme 0.91
Closes #23275. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/acme.rb18
1 files changed, 18 insertions, 0 deletions
diff --git a/Library/Formula/acme.rb b/Library/Formula/acme.rb
new file mode 100644
index 000000000..d98494887
--- /dev/null
+++ b/Library/Formula/acme.rb
@@ -0,0 +1,18 @@
+require 'formula'
+
+class Acme < Formula
+ homepage 'http://www.esw-heim.tu-clausthal.de/~marco/smorbrod/acme/'
+ url 'http://www.esw-heim.tu-clausthal.de/~marco/smorbrod/acme/current/acme091src.tar.gz'
+ version '0.91'
+ sha1 '7104ea01a2ca2962294aaac4974e10c6486534a8'
+
+ def install
+ cd "src" do
+ system "make", "install", "BINDIR=#{bin}"
+ end
+ end
+
+ test do
+ system bin/'acme', '-V'
+ end
+end