homebrew-core/Formula/voms.rb
Oscar Koeroo 8f69990322 VOMS 2.0.8
Closes Homebrew/homebrew#15463.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-10-20 16:19:19 -07:00

19 lines
471 B
Ruby

require 'formula'
class Voms < Formula
homepage 'https://github.com/italiangrid/voms'
url 'https://github.com/italiangrid/voms/tarball/2_0_8'
sha1 '5dcdbea034152b02646a4aecaafb6888a71b22ed'
depends_on :autoconf => :build
depends_on :automake => :build
depends_on :libtool => :build
# depends_on "openssl"
def install
system "sh autogen.sh"
system "./configure", "--prefix=#{prefix}", "--sysconfdir=#{etc}"
system "make install"
end
end