blob: 9e711a3ad84a38f92092b20ad790d84ef27aa056 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
require 'formula'
class GnuSed < Formula
homepage 'http://www.gnu.org/software/sed/'
url 'http://ftpmirror.gnu.org/sed/sed-4.2.2.tar.bz2'
mirror 'http://ftp.gnu.org/gnu/sed/sed-4.2.2.tar.bz2'
sha1 'f17ab6b1a7bcb2ad4ed125ef78948092d070de8f'
option 'default-names', "Do not prepend 'g' to the binary"
def install
args = ["--prefix=#{prefix}", "--disable-dependency-tracking"]
args << "--program-prefix=g" unless build.include? 'default-names'
system "./configure", *args
system "make install"
end
def caveats; <<-EOS.undent
The command has been installed with the prefix 'g'.
If you do not want the prefix, install using the 'default-names' option.
EOS
end
end
|