blob: cd7cd2a092837f51401c06323c5322d34d6b1d26 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
require 'formula'
class GnuWhich < Formula
url 'http://ftpmirror.gnu.org/which/which-2.20.tar.gz'
mirror 'http://ftp.gnu.org/gnu/which/which-2.20.tar.gz'
homepage 'http://carlo17.home.xs4all.nl/which/'
md5 '95be0501a466e515422cde4af46b2744'
def options
[['--default-names', "Do NOT prepend 'g' to the binary; will override system utils."]]
end
def install
args = ["--prefix=#{prefix}", "--disable-dependency-tracking"]
args << "--program-prefix=g" unless ARGV.include? '--default-names'
system "./configure", *args
system "make install"
end
end
|