homebrew-core/Formula/newt.rb
2015-09-03 13:08:59 +01:00

47 lines
1.8 KiB
Ruby

class Newt < Formula
desc "Library for color text mode, widget based user interfaces"
homepage "https://fedorahosted.org/newt/"
url "https://fedorahosted.org/releases/n/e/newt/newt-0.52.18.tar.gz"
sha256 "771b0e634ede56ae6a6acd910728bb5832ac13ddb0d1d27919d2498dab70c91e"
bottle do
cellar :any
sha1 "447b7cdf5ba5fb0be6bcaa80a9c30a5112071a87" => :yosemite
sha1 "07bcf73d646dd489d10d68ded6811aa5a7d5ea57" => :mavericks
sha1 "599600fa6e92c38dbaa7bb6e1138eda04a4c5bf1" => :mountain_lion
end
depends_on "gettext"
depends_on "popt"
depends_on "s-lang"
depends_on :python => :optional
# build dylibs with -dynamiclib; version libraries
patch :p0 do
url "https://svn.macports.org/repository/macports/trunk/dports/devel/libnewt/files/patch-Makefile.in.diff", :using => :curl
mirror "ftp://ftp.ca.freebsd.org/MacPorts/release/ports/devel/libnewt/files/patch-Makefile.in.diff"
mirror "https://trac.macports.org/export/132914/trunk/dports/devel/libnewt/files/patch-Makefile.in.diff"
sha256 "6672c253b42696fdacd23424ae0e07af6d86313718e06cd44e40e532a892db16"
end
def install
args = ["--prefix=#{prefix}", "--without-tcl"]
args << "--without-python" if build.without? "python"
inreplace "Makefile.in" do |s|
# name libraries correctly
# https://bugzilla.redhat.com/show_bug.cgi?id=1192285
s.gsub! "libnewt.$(SOEXT).$(SONAME)", "libnewt.$(SONAME).dylib"
s.gsub! "libnewt.$(SOEXT).$(VERSION)", "libnewt.$(VERSION).dylib"
# don't link to libpython.dylib
# causes https://github.com/Homebrew/homebrew/issues/30252
# https://bugzilla.redhat.com/show_bug.cgi?id=1192286
s.gsub! "`$$pyconfig --ldflags`", '"-undefined dynamic_lookup"'
s.gsub! "`$$pyconfig --libs`", '""'
end
system "./configure", *args
system "make", "install"
end
end