aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAnthony Ramine2011-04-06 12:37:39 +0200
committerAdam Vandenberg2011-04-14 09:00:15 -0700
commit3f6f16a8f86ff3d643a84bb64deb05fb04c538e5 (patch)
treef424753e10ea66b666f8a0a246e6ccbdb5e4dbce /Library
parent3d3fe60a86965976cea7b2b9b06f2a1b5e10e1c8 (diff)
downloadhomebrew-3f6f16a8f86ff3d643a84bb64deb05fb04c538e5.tar.bz2
ssed (Super Sed) 3.62
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/ssed.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/ssed.rb b/Library/Formula/ssed.rb
new file mode 100644
index 000000000..ed2c0e4b2
--- /dev/null
+++ b/Library/Formula/ssed.rb
@@ -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