2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-09-23 18:46:43 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Par2 < Formula
|
2010-04-07 05:58:35 +00:00
|
|
|
url 'http://downloads.sourceforge.net/project/parchive/par2cmdline/0.4/par2cmdline-0.4.tar.gz'
|
|
|
|
homepage 'http://parchive.sourceforge.net/'
|
|
|
|
sha1 '2fcdc932b5d7b4b1c68c4a4ca855ca913d464d2f'
|
2009-09-23 18:46:43 +00:00
|
|
|
|
|
|
|
def patches
|
|
|
|
%w[http://sage.math.washington.edu/home/binegar/src/par2cmdline-0.4-gcc4.patch]
|
|
|
|
end
|
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|