acme 0.91
Closes Homebrew/homebrew#23275. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
parent
f093b91ff0
commit
86bda38e9e
1 changed files with 18 additions and 0 deletions
18
Formula/acme.rb
Normal file
18
Formula/acme.rb
Normal 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
|
Loading…
Reference in a new issue