homebrew-core/Formula/cdrtools.rb

23 lines
729 B
Ruby
Raw Normal View History

require 'formula'
class Cdrtools < Formula
homepage 'http://cdrecord.berlios.de/private/cdrecord.html'
2012-12-18 05:24:22 +00:00
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 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/i386-darwin-cc").rmtree
(lib/"libschily.a").unlink
(lib/"profiled").rmtree
man5.rmtree
end
end