aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/zzuf.rb
blob: a7ad93c6fad1fa1661b37715127c4c5825c73f8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require 'formula'

class Zzuf < Formula
  homepage 'http://caca.zoy.org/wiki/zzuf'
  url 'http://caca.zoy.org/files/zzuf/zzuf-0.13.tar.gz'
  sha1 '19f904d63d045194885639c381a607ca86a319b5'

  conflicts_with 'libzzip', :because => 'both install `zzcat` binaries'

  def patches
    # Fix OS X-specific bug in zzuf 0.13; see https://trac.macports.org/ticket/29157
    # This has been fixed upstream and should be included in the next release.
    { :p3 =>
      'https://trac.macports.org/export/78051/trunk/dports/security/zzuf/files/patch-src-libzzuf-lib--mem.c.diff'
    }
  end

  def install
    system "./configure", "--disable-dependency-tracking",
                          "--prefix=#{prefix}"
    system "make install"
  end
end