blob: 0e160015ef47aeaf8e6e0ee64b8ba1f661ce30b6 (
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/archive/2_0_8.tar.gz'
sha1 'f8c442318636a29da9e2cf8933fa46249b337a05'
depends_on :autoconf
depends_on :automake
depends_on :libtool
def install
system "sh autogen.sh"
system "./configure", "--prefix=#{prefix}", "--sysconfdir=#{etc}"
system "make install"
end
end
|