remake 0.9
Closes Homebrew/homebrew#21643. Signed-off-by: Misty De Meo <mistydemeo@gmail.com>
This commit is contained in:
parent
7a4eca691c
commit
03c2a41946
1 changed files with 17 additions and 0 deletions
17
Formula/remake.rb
Normal file
17
Formula/remake.rb
Normal file
|
@ -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
|
Loading…
Reference in a new issue