homebrew-core/Formula/voms.rb
2015-06-05 14:47:57 +01:00

18 lines
503 B
Ruby

require 'formula'
class Voms < Formula
desc "Virtual organization membership service"
homepage 'https://github.com/italiangrid/voms'
url 'https://github.com/italiangrid/voms/archive/2_0_11.tar.gz'
sha1 'dabc2ebe01d01052f5b3849cb04f4947a38d99dd'
depends_on "autoconf" => :build
depends_on "automake" => :build
depends_on "libtool" => :build
def install
system "./autogen.sh"
system "./configure", "--prefix=#{prefix}", "--sysconfdir=#{etc}"
system "make install"
end
end