2009-12-29 12:41:25 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Dash < Formula
|
2011-09-14 22:28:29 +00:00
|
|
|
url 'http://gondor.apana.org.au/~herbert/dash/files/dash-0.5.7.tar.gz'
|
2010-11-08 03:20:36 +00:00
|
|
|
homepage 'http://gondor.apana.org.au/~herbert/dash/'
|
2011-09-14 22:28:29 +00:00
|
|
|
sha1 'a3ebc16f2e2c7ae8adf64e5e62ae3dcb631717c6'
|
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}",
|
2011-09-14 22:28:29 +00:00
|
|
|
"--with-libedit",
|
|
|
|
"--disable-dependency-tracking",
|
|
|
|
"--enable-fnmatch",
|
|
|
|
"--enable-glob"
|
2009-12-29 12:41:25 +00:00
|
|
|
system "make"
|
|
|
|
system "make install"
|
|
|
|
end
|
2011-09-14 22:28:29 +00:00
|
|
|
|
|
|
|
def test
|
|
|
|
system "#{HOMEBREW_PREFIX}/bin/dash -c \"echo Hello!\""
|
|
|
|
puts " ^--- That works."
|
|
|
|
end
|
2009-12-29 12:41:25 +00:00
|
|
|
end
|