homebrew-core/Formula/cdrtools.rb
2019-10-14 09:03:15 +02:00

59 lines
2.5 KiB
Ruby

class Cdrtools < Formula
desc "CD/DVD/Blu-ray premastering and recording software"
homepage "http://cdrecord.org/"
url "https://downloads.sourceforge.net/project/cdrtools/cdrtools-3.01.tar.bz2"
mirror "https://fossies.org/linux/misc/cdrtools-3.01.tar.bz2"
sha256 "ed282eb6276c4154ce6a0b5dee0bdb81940d0cbbfc7d03f769c4735ef5f5860f"
revision 1
bottle do
rebuild 1
sha256 "f0c2ea440dda7483202622453db62f883ce3872b86c325ba4de046ac44a5c53b" => :catalina
sha256 "4a7ba59af434b1302056aafd200f273470e91d27c9ad2a19f05a834ee41dc3be" => :mojave
sha256 "465c4ba80bc7733b2ac85a9d17ca7149a32072d453d750795374e8c2021e207b" => :high_sierra
sha256 "f97ea5375a9dd443000397890ab8424905f02ea278ab8dd4568ff4c7288d038a" => :sierra
sha256 "4724b3dfe367cf28dbd98dad6ddd47179e5b5d1b599a8fff8f0fa8cc4621acb2" => :el_capitan
sha256 "5370586e423d9b842b7ebd0cdb3dd2c763c433be9896bcab636cc56ecd5e0634" => :yosemite
sha256 "1b3f3ab5baf44ad31f8d09e36de6df59901ce036cc681c54187fe5f41dc8bb94" => :mavericks
end
depends_on "smake" => :build
conflicts_with "dvdrtools",
:because => "both dvdrtools and cdrtools install binaries by the same name"
patch do
url "https://downloads.sourceforge.net/project/cdrtools/cdrtools-3.01-fix-20151126-mkisofs-isoinfo.patch"
sha256 "4e07a2be599c0b910ab3401744cec417dbdabf30ea867ee59030a7ad1906498b"
end
def install
# Speed-up the build by skipping the compilation of the profiled libraries.
# This could be done by dropping each occurence of *_p.mk from the definition
# of MK_FILES in every lib*/Makefile. But it is much easier to just remove all
# lib*/*_p.mk files. The latter method produces warnings but works fine.
rm_f Dir["lib*/*_p.mk"]
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
man5.rmtree
end
test do
system "#{bin}/cdrecord", "-version"
system "#{bin}/cdda2wav", "-version"
date = shell_output("date")
mkdir "subdir" do
(testpath/"subdir/testfile.txt").write(date)
system "#{bin}/mkisofs", "-r", "-o", "../test.iso", "."
end
assert_predicate testpath/"test.iso", :exist?
system "#{bin}/isoinfo", "-R", "-i", "test.iso", "-X"
assert_predicate testpath/"testfile.txt", :exist?
assert_equal date, File.read("testfile.txt")
end
end