blob: b5a85160616663a4598ff4711d502d020cb91e0d (
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.13.tar.gz'
sha1 'bb1de570e8c4b977a8ec623c808df80cd10a3d8f'
def install
system "make", "install", "PREFIX=#{prefix}", "ETC=#{etc}", "CACHE=#{var}/cache"
end
end
|