homebrew-core/Formula/bsdsfv.rb

36 lines
970 B
Ruby
Raw Normal View History

2011-03-10 05:11:03 +00:00
class Bsdsfv < Formula
desc "SFV utility tools"
homepage "http://bsdsfv.sourceforge.net/"
url "https://downloads.sourceforge.net/project/bsdsfv/bsdsfv/1.18/bsdsfv-1.18.tar.gz"
sha256 "577245da123d1ea95266c1628e66a6cf87b8046e1a902ddd408671baecf88495"
# bug report:
# http://sourceforge.net/tracker/?func=detail&aid=2887842&group_id=7211&atid=107211
# Patch from MacPorts
2014-03-18 03:44:55 +00:00
patch :DATA
def install
bin.mkpath
inreplace "Makefile" do |s|
s.change_make_var! "INSTALL_PREFIX", prefix
s.change_make_var! "INDENT", "indent"
s.gsub! " ${INSTALL_PROGRAM} bsdsfv ${INSTALL_PREFIX}/bin", " ${INSTALL_PROGRAM} bsdsfv #{bin}/"
end
system "make", "all"
system "make", "install"
end
end
__END__
--- a/bsdsfv.c 2012-09-25 07:31:03.000000000 -0500
+++ b/bsdsfv.c 2012-09-25 07:31:08.000000000 -0500
@@ -44,5 +44,5 @@
typedef struct sfvtable {
char filename[FNAMELEN];
- int crc;
+ unsigned int crc;
int found;
} SFVTABLE;