ssed (Super Sed) 3.62

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Anthony Ramine 2011-04-06 12:37:39 +02:00 committed by Adam Vandenberg
parent 9256b7840d
commit 6e7feca358

16
Formula/ssed.rb Normal file
View file

@ -0,0 +1,16 @@
require 'formula'
class Ssed < Formula
url 'http://sed.sourceforge.net/grabbag/ssed/sed-3.62.tar.gz'
homepage 'http://sed.sourceforge.net/grabbag/ssed/'
md5 '8f35882af95da4e5ddbf3de1add26f79'
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--mandir=#{man}",
"--infodir=#{info}",
"--program-prefix=s"
system "make install"
end
end