blob: 8ed7bb0c87a250998fb2da3d7d0c08901a500219 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
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
def install
system "sh autogen.sh"
system "./configure", "--prefix=#{prefix}", "--sysconfdir=#{etc}"
system "make install"
end
end
|