aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/rxvt-unicode.rb
blob: ca2c7aef99fe49abdc57057741219f1c13fb691e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
require 'formula'

class RxvtUnicode < Formula
  url 'http://dist.schmorp.de/rxvt-unicode/rxvt-unicode-9.07.tar.bz2'
  homepage 'http://software.schmorp.de/pkg/rxvt-unicode.html'
  md5 '49bb52c99e002bf85eb41d8385d903b5'

  aka :urxvt

  def patches
    # Add 256 color support
    {:p1 => ["doc/urxvt-8.2-256color.patch", DATA]}
  end

  def install
    system "./configure",
           "--prefix=#{prefix}",
           "--disable-afterimage",
           "--enable-perl",
           "--enable-256-color",
           "--with-term=rxvt-256color",
           "--disable-dependency-tracking"
    system "make"

    # `make` won't work unless we rename this
    system "mv INSTALL README.install"

    system "make install"
  end

  def caveats
    "This software runs under X11."
  end
end

__END__
--- a/configure	2009-12-30 07:13:23.000000000 +0100
+++ b/configure	2010-07-12 20:36:58.000000000 +0200
@@ -11810,8 +11810,8 @@
 
      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 >conftest.$ac_ext <<_ACEOF
 /* confdefs.h.  */
 _ACEOF
@@ -11874,8 +11874,8 @@
 
         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
         { { echo "$as_me:$LINENO: error: no, unable to link" >&5