1230f358a4
See http://trac.macports.org/ticket/35377. Closes Homebrew/homebrew#18506. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
30 lines
920 B
Ruby
30 lines
920 B
Ruby
require 'formula'
|
|
|
|
class Cdrtools < Formula
|
|
homepage 'http://cdrecord.berlios.de/private/cdrecord.html'
|
|
url 'ftp://ftp.berlios.de/pub/cdrecord/cdrtools-3.00.tar.gz'
|
|
sha1 '2cd7d1725e0da2267b7a033cc744295d6e2bc6b9'
|
|
|
|
depends_on 'smake' => :build
|
|
|
|
conflicts_with 'dvdrtools',
|
|
:because => 'both dvdrtools and cdrtools install binaries by the same name'
|
|
|
|
def patches
|
|
{:p0 => [
|
|
"https://trac.macports.org/export/104091/trunk/dports/sysutils/cdrtools/files/patch-include_schily_sha2.h"
|
|
]}
|
|
end
|
|
|
|
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
|