homebrew-core/Formula/voms.rb

18 lines
454 B
Ruby
Raw Normal View History

require 'formula'
class Voms < Formula
homepage 'https://github.com/italiangrid/voms'
2013-11-28 04:20:55 +00:00
url 'https://github.com/italiangrid/voms/archive/2_0_11.tar.gz'
sha1 'dabc2ebe01d01052f5b3849cb04f4947a38d99dd'
2014-06-01 01:13:07 +00:00
depends_on "autoconf" => :build
depends_on "automake" => :build
depends_on "libtool" => :build
def install
2014-06-01 01:13:07 +00:00
system "./autogen.sh"
system "./configure", "--prefix=#{prefix}", "--sysconfdir=#{etc}"
system "make install"
end
end