homebrew-core/Formula/gnu-sed.rb
Brett Koonce bcd4e8a770 gnu-sed 4.2.2
Closes Homebrew/homebrew#16713.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-12-22 15:39:47 -06:00

18 lines
533 B
Ruby

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
end