c8f6990323
Closes Homebrew/homebrew#33109. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
57 lines
1.7 KiB
Ruby
57 lines
1.7 KiB
Ruby
require 'formula'
|
|
|
|
class Cdrtools < Formula
|
|
homepage 'http://cdrecord.org/'
|
|
|
|
stable do
|
|
url "https://downloads.sourceforge.net/project/cdrtools/cdrtools-3.00.tar.bz2"
|
|
sha1 "6464844d6b936d4f43ee98a04d637cd91131de4e"
|
|
|
|
patch :p0 do
|
|
url "https://trac.macports.org/export/104091/trunk/dports/sysutils/cdrtools/files/patch-include_schily_sha2.h"
|
|
sha1 "6c2c06b7546face6dd58c3fb39484b9120e3e1ca"
|
|
end
|
|
end
|
|
|
|
devel do
|
|
url "https://downloads.sourceforge.net/project/cdrtools/alpha/cdrtools-3.01a25.tar.bz2"
|
|
version "3.01~a25"
|
|
sha1 "ef54e81082c795d595e752cec93884f74a9294ca"
|
|
|
|
patch :p0, :DATA
|
|
end
|
|
|
|
depends_on 'smake' => :build
|
|
|
|
conflicts_with 'dvdrtools',
|
|
:because => 'both dvdrtools and cdrtools install binaries by the same name'
|
|
|
|
def install
|
|
system "smake", "INS_BASE=#{prefix}", "INS_RBASE=#{prefix}", "install"
|
|
# cdrtools tries to install some generic smake headers, libraries and
|
|
# manpages, which conflict with the copies installed by smake itself
|
|
(include/"schily").rmtree
|
|
%w[libschily.a libdeflt.a libfind.a].each do |file|
|
|
(lib/file).unlink
|
|
end
|
|
(lib/"profiled").rmtree
|
|
man5.rmtree
|
|
end
|
|
end
|
|
|
|
__END__
|
|
--- include/schily/sha2.h.orig 2010-08-27 10:41:30.000000000 +0000
|
|
+++ include/schily/sha2.h
|
|
@@ -104,10 +104,12 @@
|
|
|
|
#ifdef HAVE_LONGLONG
|
|
extern void SHA384Init __PR((SHA2_CTX *));
|
|
+#ifndef HAVE_PRAGMA_WEAK
|
|
extern void SHA384Transform __PR((UInt64_t state[8],
|
|
const UInt8_t [SHA384_BLOCK_LENGTH]));
|
|
extern void SHA384Update __PR((SHA2_CTX *, const UInt8_t *, size_t));
|
|
extern void SHA384Pad __PR((SHA2_CTX *));
|
|
+#endif
|
|
extern void SHA384Final __PR((UInt8_t [SHA384_DIGEST_LENGTH],
|
|
SHA2_CTX *));
|
|
extern char *SHA384End __PR((SHA2_CTX *, char *));
|