50 lines
1.6 KiB
Ruby
50 lines
1.6 KiB
Ruby
class Newt < Formula
|
|
desc "Library for color text mode, widget based user interfaces"
|
|
homepage "https://pagure.io/newt"
|
|
url "https://pagure.io/releases/newt/newt-0.52.21.tar.gz"
|
|
sha256 "265eb46b55d7eaeb887fca7a1d51fe115658882dfe148164b6c49fccac5abb31"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "2b902ecc6fc52b2f2681eb23e4eb568684a018deeada88e5a920952de8cc1080" => :mojave
|
|
sha256 "7a88cbe033eb207df57a6410f19339975a672e331c073e3ee79e467652c8753c" => :high_sierra
|
|
sha256 "4d82531bb783ba5e3f8a64150582e61b2fd4a9fb8be96d0bee88fa3bbe0dc3c3" => :sierra
|
|
end
|
|
|
|
depends_on "gettext"
|
|
depends_on "popt"
|
|
depends_on "s-lang"
|
|
|
|
def install
|
|
args = ["--prefix=#{prefix}", "--without-tcl"]
|
|
|
|
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
|
|
|
|
test do
|
|
ENV["TERM"] = "xterm"
|
|
(testpath/"test.c").write <<~EOS
|
|
#import <newt.h>
|
|
int main() {
|
|
newtInit();
|
|
newtFinished();
|
|
}
|
|
EOS
|
|
system ENV.cc, "test.c", "-o", "test", "-L#{lib}", "-lnewt"
|
|
system "./test"
|
|
end
|
|
end
|