homebrew-core/Formula/par2.rb

41 lines
1.3 KiB
Ruby
Raw Normal View History

require 'formula'
2009-09-23 18:46:43 +00:00
2011-03-10 05:11:03 +00:00
class Par2 < Formula
homepage 'http://parchive.sourceforge.net/'
2012-02-11 04:43:19 +00:00
url 'http://downloads.sourceforge.net/project/parchive/par2cmdline/0.4/par2cmdline-0.4.tar.gz'
sha1 '2fcdc932b5d7b4b1c68c4a4ca855ca913d464d2f'
2009-09-23 18:46:43 +00:00
conflicts_with "par2tbb",
:because => "par2 and par2tbb install the same binaries."
2009-09-23 18:46:43 +00:00
def patches
[
# Fixes compilation with GCC 4 and still required for clang
"http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/app-arch/par2cmdline/files/par2cmdline-0.4-gcc4.patch?revision=1.1",
# Clang doesn't like variable length arrays of non-POD types.
DATA
]
2012-06-15 00:02:12 +00:00
end
2009-09-23 18:46:43 +00:00
def install
2012-02-11 04:43:19 +00:00
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
2009-09-23 18:46:43 +00:00
system "make install"
end
end
__END__
diff --git a/par2fileformat.h b/par2fileformat.h
index 9920b24..248cfaf 100644
--- a/par2fileformat.h
+++ b/par2fileformat.h
@@ -84,7 +84,7 @@ struct FILEVERIFICATIONPACKET
PACKET_HEADER header;
// Body
MD5Hash fileid; // MD5hash of file_hash_16k, file_length, file_name
- FILEVERIFICATIONENTRY entries[];
+ FILEVERIFICATIONENTRY entries[0];
} PACKED;
// The file description packet is used to record the name of the file,