require 'formula' class Polipo < Formula homepage 'http://www.pps.jussieu.fr/~jch/software/polipo/' url 'http://www.pps.univ-paris-diderot.fr/~jch/software/files/polipo/polipo-1.1.0.tar.gz' sha1 '72fc8b9299235aca3d68b7e76a84119b91b12db5' head 'git://git.wifi.pps.jussieu.fr/polipo' def install cache_root = (var + "cache/polipo") cache_root.mkpath args = %W[PREFIX=#{prefix} LOCAL_ROOT=#{share}/polipo/www DISK_CACHE_ROOT=#{cache_root} MANDIR=#{man} INFODIR=#{info} PLATFORM_DEFINES=-DHAVE_IPv6] system "make", "all", *args system "make", "install", *args end def plist; <<-EOS.undent Label #{plist_name} RunAtLoad KeepAlive ProgramArguments #{opt_bin}/polipo EOS end end