homebrew-core/Formula/gnu-getopt.rb
2015-09-21 20:56:20 +01:00

30 lines
1,012 B
Ruby

class GnuGetopt < Formula
desc "Command-line option parsing library"
homepage "http://software.frodo.looijaard.name/getopt/"
url "http://frodo.looijaard.name/system/files/software/getopt/getopt-1.1.6.tar.gz"
sha256 "d0bf1dc642a993e7388a1cddfb9409bed375c21d5278056ccca3a0acd09dc5fe"
bottle do
sha256 "5e9e87fe18c5681e80f1cf940fed275ed895831304326bc5e7be6fb6e53e8594" => :el_capitan
sha1 "a9028999ae9bb3e606df3ff6a1b246311b77fae5" => :yosemite
sha1 "6e8df00f7607127df705d7c1eb6a046e599f7825" => :mavericks
sha1 "cbd65e8f5e2c613d48dfefdcb801aa0a7ecdc10f" => :mountain_lion
end
depends_on "gettext"
keg_only :provided_by_osx
def install
inreplace "Makefile" do |s|
gettext = Formula["gettext"]
s.change_make_var! "CPPFLAGS", "\\1 -I#{gettext.include}"
s.change_make_var! "LDFLAGS", "\\1 -L#{gettext.lib} -lintl"
end
system "make", "prefix=#{prefix}", "mandir=#{man}", "install"
end
test do
system "#{bin}/getopt", "-o", "--test"
end
end