aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/voms.rb
blob: e8dd5379b9ef59bc92933d7efc7d3477605ff1f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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