2009-12-29 12:41:25 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Dash < Formula
|
2010-11-08 01:40:57 +00:00
|
|
|
url 'http://gondor.apana.org.au/~herbert/dash/files/dash-0.5.6.1.tar.gz'
|
2010-11-08 03:20:36 +00:00
|
|
|
homepage 'http://gondor.apana.org.au/~herbert/dash/'
|
2010-11-08 01:40:57 +00:00
|
|
|
sha1 '06944456a1e3a2cbc325bffd0c898eff198b210a'
|
2011-02-19 10:27:21 +00:00
|
|
|
head 'https://git.kernel.org/pub/scm/utils/dash/dash.git', :using => :git
|
2009-12-29 12:41:25 +00:00
|
|
|
|
|
|
|
def install
|
2011-02-19 10:27:21 +00:00
|
|
|
if ARGV.build_head?
|
|
|
|
system "aclocal"
|
|
|
|
system "autoreconf -f -i -Wall,no-obsolete"
|
|
|
|
end
|
|
|
|
|
|
|
|
system "./configure", "--prefix=#{prefix}",
|
2010-07-06 20:14:19 +00:00
|
|
|
"--with-libedit"
|
2009-12-29 12:41:25 +00:00
|
|
|
system "make"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|