2010-05-22 11:10:37 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Zzuf < Formula
|
2010-05-22 11:10:37 +00:00
|
|
|
url 'http://caca.zoy.org/files/zzuf/zzuf-0.13.tar.gz'
|
|
|
|
homepage 'http://caca.zoy.org/wiki/zzuf'
|
|
|
|
md5 '74579c429f9691f641a14f408997d42d'
|
|
|
|
|
2012-08-13 17:29:18 +00:00
|
|
|
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
|
|
|
|
|
2010-05-22 11:10:37 +00:00
|
|
|
def install
|
|
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|