homebrew-core/Formula/avra.rb

22 lines
489 B
Ruby
Raw Normal View History

require 'formula'
class Avra < Formula
homepage 'http://avra.sourceforge.net/'
url 'http://downloads.sourceforge.net/project/avra/1.3.0/avra-1.3.0.tar.bz2'
sha1 '7ad7d168b02107d4f2d72951155798c2fd87d5a9'
depends_on :autoconf
depends_on :automake
def install
# build fails if these don't exist
touch 'NEWS'
touch 'ChangeLog'
cd "src" do
2011-10-18 17:01:52 +00:00
system "./bootstrap"
system "./configure", "--prefix=#{prefix}"
2011-10-18 17:01:52 +00:00
system "make install"
end
end
end