blob: 098c549a6d0652bb9a49778fe466fd48b9957a1b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
|