92 lines
3.1 KiB
Ruby
92 lines
3.1 KiB
Ruby
class RxvtUnicode < Formula
|
|
desc "Rxvt fork with Unicode support"
|
|
homepage "http://software.schmorp.de/pkg/rxvt-unicode.html"
|
|
url "http://dist.schmorp.de/rxvt-unicode/rxvt-unicode-9.22.tar.bz2"
|
|
sha256 "e94628e9bcfa0adb1115d83649f898d6edb4baced44f5d5b769c2eeb8b95addd"
|
|
revision 3
|
|
|
|
bottle do
|
|
sha256 "126bda5982eb1d785cdaf84ab108024d85c3904cc3039514f13e12ebb80652a9" => :mojave
|
|
sha256 "01a97a5842a1507ae1e9c99d973811e300d0aac95b3fb744e8181918b6ac11eb" => :high_sierra
|
|
sha256 "2946f3abe2481ad6e4f52be7a9e51259bcd0846f38602e74384343946479eb4a" => :sierra
|
|
sha256 "5d6060cc30061763809d7255b8654309be0a709fccdcda1b799f0fac16fd085d" => :el_capitan
|
|
sha256 "9b674dd3738ab25fa6145680f92ca036df470ced089448abcb6647439320e075" => :yosemite
|
|
end
|
|
|
|
option "without-iso14755", "Disable ISO 14775 Shift+Ctrl hotkey"
|
|
option "without-unicode3", "Disable 21-bit Unicode 3 (non-BMP) character support"
|
|
|
|
deprecated_option "disable-iso14755" => "without-iso14755"
|
|
|
|
depends_on "pkg-config" => :build
|
|
depends_on :x11
|
|
|
|
# Patches 1 and 2 remove -arch flags for compiling perl support
|
|
# Patch 3 fixes `make install` target on case-insensitive filesystems
|
|
patch :DATA
|
|
|
|
def install
|
|
args = %W[
|
|
--prefix=#{prefix}
|
|
--enable-256-color
|
|
--with-term=rxvt-unicode-256color
|
|
--with-terminfo=/usr/share/terminfo
|
|
--enable-smart-resize
|
|
]
|
|
|
|
args << "--disable-iso14755" if build.without? "iso14755"
|
|
args << "--enable-unicode3" if build.with? "unicode3"
|
|
|
|
system "./configure", *args
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
daemon = fork do
|
|
system bin/"urxvtd"
|
|
end
|
|
sleep 2
|
|
system bin/"urxvtc", "-k"
|
|
Process.wait daemon
|
|
end
|
|
end
|
|
|
|
__END__
|
|
diff --git a/configure b/configure
|
|
index c756724..5e94907 100755
|
|
--- a/configure
|
|
+++ b/configure
|
|
@@ -7847,8 +7847,8 @@ $as_echo_n "checking for $PERL suitability... " >&6; }
|
|
|
|
save_CXXFLAGS="$CXXFLAGS"
|
|
save_LIBS="$LIBS"
|
|
- CXXFLAGS="$CXXFLAGS `$PERL -MExtUtils::Embed -e ccopts`"
|
|
- LIBS="$LIBS `$PERL -MExtUtils::Embed -e ldopts`"
|
|
+ CXXFLAGS="$CXXFLAGS `$PERL -MExtUtils::Embed -e ccopts|sed -E 's/ -arch [^ ]+//g'`"
|
|
+ LIBS="$LIBS `$PERL -MExtUtils::Embed -e ldopts|sed -E 's/ -arch [^ ]+//g'`"
|
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
|
/* end confdefs.h. */
|
|
|
|
@@ -7884,8 +7884,8 @@ $as_echo "#define ENABLE_PERL 1" >>confdefs.h
|
|
|
|
IF_PERL=
|
|
PERL_O=rxvtperl.o
|
|
- PERLFLAGS="`$PERL -MExtUtils::Embed -e ccopts`"
|
|
- PERLLIB="`$PERL -MExtUtils::Embed -e ldopts`"
|
|
+ PERLFLAGS="`$PERL -MExtUtils::Embed -e ccopts|sed -E 's/ -arch [^ ]+//g'`"
|
|
+ PERLLIB="`$PERL -MExtUtils::Embed -e ldopts|sed -E 's/ -arch [^ ]+//g'`"
|
|
PERLPRIVLIBEXP="`$PERL -MConfig -e 'print $Config{privlibexp}'`"
|
|
else
|
|
as_fn_error $? "no, unable to link" "$LINENO" 5
|
|
diff --git a/Makefile.in b/Makefile.in
|
|
index eee5969..c230930 100644
|
|
--- a/Makefile.in
|
|
+++ b/Makefile.in
|
|
@@ -31,6 +31,7 @@ subdirs = src doc
|
|
|
|
RECURSIVE_TARGETS = all allbin alldoc tags clean distclean realclean install
|
|
|
|
+.PHONY: install
|
|
#-------------------------------------------------------------------------
|
|
|
|
$(RECURSIVE_TARGETS):
|