blob: 685e1c8f18a4cd13f384ece46a83c579a6a43a31 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
require 'formula'
class FetchCrl < Formula
homepage 'http://wiki.nikhef.nl/grid/FetchCRL3'
url 'https://dist.eugridpma.info/distribution/util/fetch-crl3/fetch-crl-3.0.12.tar.gz'
sha1 '78c25808517da2846f918f60ca4e86cb432cdf73'
def install
system "make", "install", "PREFIX=#{prefix}", "ETC=#{etc}", "CACHE=#{var}/cache"
end
end
|