8f69990322
Closes Homebrew/homebrew#15463. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
19 lines
471 B
Ruby
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
|