homebrew-core/Formula/gnu-getopt.rb

28 lines
822 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class GnuGetopt < Formula
2013-01-28 02:54:11 +00:00
homepage 'http://software.frodo.looijaard.name/getopt/'
url 'http://frodo.looijaard.name/system/files/software/getopt/getopt-1.1.5.tar.gz'
sha1 '9090eb46ac92f2fd2749ca4121e81aaad40f325d'
2014-03-13 20:14:00 +00:00
bottle do
2014-10-21 20:14:11 +00:00
revision 1
sha1 "003e06f4580de4066f39bf7d4c178f3e06e1b55a" => :yosemite
sha1 "a694925a2dce22c7bbbd252907b8e484e9a1db39" => :mavericks
sha1 "8c90689aca391072d2a557b8f8ebfe0eacbba2f2" => :mountain_lion
2014-03-13 20:14:00 +00:00
end
depends_on 'gettext'
keg_only :provided_by_osx
def install
inreplace 'Makefile' do |s|
2014-02-25 06:30:34 +00:00
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
end