aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorEmmanuel Blot2009-12-29 13:41:25 +0100
committerDavid Höppner2010-01-30 14:11:29 +0100
commit4e9f170c379a6f6b5c5ffc442483f7a0761a3085 (patch)
treea308c757f2e154494924302fb574e91e30de70fb /Library/Formula
parente05cc77f11ceef4e070aaa0b3d0639e210ce49f8 (diff)
downloadhomebrew-4e9f170c379a6f6b5c5ffc442483f7a0761a3085.tar.bz2
Add dash formula (0.5.5.1)
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/dash.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/dash.rb b/Library/Formula/dash.rb
new file mode 100644
index 000000000..098c549a6
--- /dev/null
+++ b/Library/Formula/dash.rb
@@ -0,0 +1,15 @@
+require 'formula'
+
+class Dash <Formula
+ @url='http://ftp.debian.org/debian/pool/main/d/dash/dash_0.5.5.1.orig.tar.gz'
+ @homepage='http://packages.debian.org/sid/dash'
+ @md5='7ac832b440b91f5a52cf8eb68e172616'
+ @version='0.5.5.1'
+
+ def install
+ system "./configure", "--prefix=#{prefix}", "--disable-debug",
+ "--with-libedit"
+ system "make"
+ system "make install"
+ end
+end