gnu-arch 1.3.5

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Cameron Desautels 2012-02-16 10:14:37 -06:00 committed by Adam Vandenberg
parent 234218f4c8
commit fd739178cf

24
Formula/gnu-arch.rb Normal file
View file

@ -0,0 +1,24 @@
require 'formula'
class GnuArch < Formula
homepage 'http://www.gnu.org/software/gnu-arch/'
url 'http://ftpmirror.gnu.org/gnu-arch/tla-1.3.5.tar.gz'
mirror 'http://ftp.gnu.org/gnu/gnu-arch/tla-1.3.5.tar.gz'
md5 'db31ee89bc4788eef1eba1cee6c176ef'
def install
Dir.mkdir "build"
Dir.chdir "build" do
system "../src/configure", "--prefix=#{prefix}"
ENV.j1 # don't run make in parallel
system "make"
system "make install"
end
end
def test
system "#{bin}/tla -V"
end
end