diff options
| author | Jack Nagel | 2013-11-24 11:45:07 -0600 |
|---|---|---|
| committer | Jack Nagel | 2013-11-24 11:45:08 -0600 |
| commit | 931e2132bb463fbeaab73b3fa10284b9129cc010 (patch) | |
| tree | 70778a88cbcb6994aaf0233a758e439426a65084 /Library/Formula | |
| parent | 8da00e223a356a47e2431ac0b54a02f23401024e (diff) | |
| download | homebrew-931e2132bb463fbeaab73b3fa10284b9129cc010.tar.bz2 | |
jigdo: fix build on 10.9
Fixes #24626.
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/jigdo.rb | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Library/Formula/jigdo.rb b/Library/Formula/jigdo.rb index 5ee51eb75..7a587def5 100644 --- a/Library/Formula/jigdo.rb +++ b/Library/Formula/jigdo.rb @@ -9,8 +9,14 @@ class Jigdo < Formula depends_on 'berkeley-db' depends_on 'gtk+' + # Use MacPorts patch for compilation on 10.9; this software is no longer developed. + def patches + { :p0 => "http://trac.macports.org/export/113020/trunk/dports/net/jigdo/files/patch-src-compat.hh.diff" } + end + def install - system "./configure", "--disable-debug", "--disable-dependency-tracking", + system "./configure", "--disable-debug", + "--disable-dependency-tracking", "--prefix=#{prefix}", "--mandir=#{man}" system "make" |
