63 lines
2.4 KiB
Ruby
63 lines
2.4 KiB
Ruby
class GetIplayer < Formula
|
|
desc "Utility for downloading TV and radio programmes from BBC iPlayer"
|
|
homepage "https://github.com/get-iplayer/get_iplayer"
|
|
url "https://github.com/get-iplayer/get_iplayer/archive/v3.07.tar.gz"
|
|
sha256 "4dee8e076cd2b09dba971cd603cfaaa18be8e00ce9bb75958bc0d8234cd6dfa0"
|
|
head "https://github.com/get-iplayer/get_iplayer.git", :branch => "develop"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "d4aec9a94cd454d052efcf5fef4e15c4eeff086e3e0615e022ec753deb68b9f5" => :high_sierra
|
|
sha256 "ebe4893a375ba17ac628865e2d06431790b9520254d4ee231c8561061eeb3498" => :sierra
|
|
sha256 "4bddbe8441ef3f47d9ade77e6bfc26967cedd5d0ca139489b6178273f99d5fce" => :el_capitan
|
|
end
|
|
|
|
depends_on "atomicparsley" => :recommended
|
|
depends_on "ffmpeg" => :recommended
|
|
|
|
depends_on :macos => :yosemite
|
|
|
|
resource "IO::Socket::IP" do
|
|
url "https://cpan.metacpan.org/authors/id/P/PE/PEVANS/IO-Socket-IP-0.39.tar.gz"
|
|
sha256 "11950da7636cb786efd3bfb5891da4c820975276bce43175214391e5c32b7b96"
|
|
end
|
|
|
|
resource "IO::Socket::SSL" do
|
|
url "https://cpan.metacpan.org/authors/id/S/SU/SULLR/IO-Socket-SSL-2.052.tar.gz"
|
|
sha256 "e4897a9b17cb18a3c44aa683980d52cef534cdfcb8063d6877c879bfa2f26673"
|
|
end
|
|
|
|
resource "Mojolicious" do
|
|
url "https://cpan.metacpan.org/authors/id/S/SR/SRI/Mojolicious-7.57.tar.gz"
|
|
sha256 "95835ac5963d5eab49f936c7983c5836d34d6cdc87ce3553d77bc5304c2b520a"
|
|
end
|
|
|
|
def install
|
|
ENV.prepend_create_path "PERL5LIB", libexec/"lib/perl5"
|
|
ENV["NO_NETWORK_TESTING"] = "1"
|
|
|
|
resources.each do |r|
|
|
r.stage do
|
|
system "perl", "Makefile.PL", "INSTALL_BASE=#{libexec}"
|
|
system "make", "install"
|
|
end
|
|
end
|
|
|
|
inreplace ["get_iplayer", "get_iplayer.cgi"] do |s|
|
|
s.gsub!(/^(my \$version_text);/i, "\\1 = \"#{pkg_version}-homebrew\";")
|
|
s.gsub! "#!/usr/bin/env perl", "#!/usr/bin/perl"
|
|
end
|
|
|
|
bin.install "get_iplayer", "get_iplayer.cgi"
|
|
bin.env_script_all_files(libexec/"bin", :PERL5LIB => ENV["PERL5LIB"])
|
|
man1.install "get_iplayer.1"
|
|
end
|
|
|
|
test do
|
|
output = shell_output("\"#{bin}/get_iplayer\" --refresh --refresh-include=\"BBC None\" --quiet dontshowanymatches 2>&1")
|
|
assert_match "get_iplayer #{pkg_version}-homebrew", output, "Unexpected version"
|
|
assert_match "INFO: 0 matching programmes", output, "Unexpected output"
|
|
assert_match "INFO: Indexing tv programmes (concurrent)", output,
|
|
"Mojolicious not found"
|
|
end
|
|
end
|