homebrew-core/Formula/dash.rb

37 lines
1,017 B
Ruby
Raw Normal View History

2009-12-29 12:41:25 +00:00
require 'formula'
2011-03-10 05:11:03 +00:00
class Dash < Formula
homepage 'http://gondor.apana.org.au/~herbert/dash/'
url "http://gondor.apana.org.au/~herbert/dash/files/dash-0.5.8.tar.gz"
sha1 "cd058935bba545427caa375337afe8a6309477d2"
2012-04-19 02:37:43 +00:00
2015-01-16 14:19:42 +00:00
bottle do
cellar :any
sha1 "c1ac235981ac608abb8cdf5649676ac3f40afb2d" => :yosemite
sha1 "b626fcc3d0a9482b32d2c62b6faa99159324ea82" => :mavericks
sha1 "6f4795d3a2d23d1010b637b4212c664ac9e5055b" => :mountain_lion
end
2013-09-21 23:33:42 +00:00
head do
url 'https://git.kernel.org/pub/scm/utils/dash/dash.git'
2014-12-04 22:38:00 +00:00
depends_on "autoconf" => :build
depends_on "automake" => :build
2013-09-21 23:33:42 +00:00
end
2009-12-29 12:41:25 +00:00
def install
2013-11-13 17:58:50 +00:00
system "./autogen.sh" if build.head?
system "./configure", "--prefix=#{prefix}",
"--with-libedit",
"--disable-dependency-tracking",
"--enable-fnmatch",
"--enable-glob"
2009-12-29 12:41:25 +00:00
system "make"
system "make install"
end
test do
system "#{bin}/dash", "-c", "echo Hello!"
end
2009-12-29 12:41:25 +00:00
end