2013-06-16 10:07:23 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Newt < Formula
|
|
|
|
homepage 'https://fedorahosted.org/newt/'
|
2013-09-27 08:09:00 +00:00
|
|
|
url 'https://fedorahosted.org/releases/n/e/newt/newt-0.52.16.tar.gz'
|
|
|
|
sha1 '678bf57e0a7e28db4da1a2951dbb65f9ce882f73'
|
2013-06-16 10:07:23 +00:00
|
|
|
|
|
|
|
depends_on 'gettext'
|
|
|
|
depends_on 'popt'
|
|
|
|
depends_on 's-lang'
|
|
|
|
depends_on :python => :optional
|
|
|
|
|
2014-03-14 15:03:25 +00:00
|
|
|
patch :p0 do
|
|
|
|
url "https://trac.macports.org/export/111598/trunk/dports/devel/libnewt/files/patch-configure.ac.diff"
|
|
|
|
sha1 "d01bd0d8cd2b679c26f0f443bde495a52abe5a4f"
|
|
|
|
end
|
|
|
|
|
|
|
|
patch :p0 do
|
2014-04-26 19:48:32 +00:00
|
|
|
url "https://gist.githubusercontent.com/co-me/6725961/raw/aa8bb06967ad5360eab89e22c1fe15b36bfa06e3/patch-Makefile.in.diff"
|
2014-03-14 15:03:25 +00:00
|
|
|
sha1 "8cd3b609cd7dffbc2abf00454dcba0a78967bce7"
|
2013-06-16 10:07:23 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def install
|
|
|
|
args = ["--prefix=#{prefix}", "--without-tcl"]
|
|
|
|
args << "--without-python" if build.without? 'python'
|
|
|
|
system "./configure", *args
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|