diff options
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 |
