diff options
| author | Emmanuel Blot | 2009-12-29 13:41:25 +0100 |
|---|---|---|
| committer | David Höppner | 2010-01-30 14:11:29 +0100 |
| commit | 4e9f170c379a6f6b5c5ffc442483f7a0761a3085 (patch) | |
| tree | a308c757f2e154494924302fb574e91e30de70fb /Library/Formula | |
| parent | e05cc77f11ceef4e070aaa0b3d0639e210ce49f8 (diff) | |
| download | homebrew-4e9f170c379a6f6b5c5ffc442483f7a0761a3085.tar.bz2 | |
Add dash formula (0.5.5.1)
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/dash.rb | 15 |
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 |
