acme 0.91

Closes Homebrew/homebrew#23275.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Mike Naberezny 2013-10-14 15:32:27 -07:00 committed by Adam Vandenberg
parent f093b91ff0
commit 86bda38e9e

18
Formula/acme.rb Normal file
View file

@ -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