class GetFlashVideos < Formula desc "Download or play videos from various Flash-based websites" homepage "https://github.com/monsieurvideo/get-flash-videos" url "https://github.com/monsieurvideo/get-flash-videos/archive/1.25.99.03.tar.gz" sha256 "37267b41c7b0c240d99ed1f5e7ba04d00f98a8daff82ac9edd2b12c3bca83d73" bottle do cellar :any_skip_relocation sha256 "1a45571d40ed0c4e8b98142988156cdedafd82cfcb82108ee512cb59d34f6dcf" => :catalina sha256 "ce0853c6ed07dfec3abce3ae4ca0cf073f5a8a38d530a227ffd966e7f1d946c4" => :mojave sha256 "10e25788bbd00ffd0f0a5281c9c4c493c2957947ba4690cf92460c98aa72dc1b" => :high_sierra sha256 "6c6e60aff2308881f4ef896b5a5c2dd1b05db9146d224be024793f042534dc6d" => :sierra sha256 "0b7edca9b6518af848a6cb5f84bb34014cd017391279398ea9d796dc89ea7a57" => :el_capitan end depends_on "rtmpdump" resource "Crypt::Blowfish_PP" do url "https://cpan.metacpan.org/authors/id/M/MA/MATTBM/Crypt-Blowfish_PP-1.12.tar.gz" sha256 "714f1a3e94f658029d108ca15ed20f0842e73559ae5fc1faee86d4f2195fcf8c" end resource "LWP::Protocol" do url "https://cpan.metacpan.org/authors/id/O/OA/OALDERS/libwww-perl-6.33.tar.gz" sha256 "97417386f11f007ae129fe155b82fd8969473ce396a971a664c8ae6850c69b99" end resource "Tie::IxHash" do url "https://cpan.metacpan.org/authors/id/C/CH/CHORNY/Tie-IxHash-1.23.tar.gz" sha256 "fabb0b8c97e67c9b34b6cc18ed66f6c5e01c55b257dcf007555e0b027d4caf56" end resource "WWW::Mechanize" do url "https://cpan.metacpan.org/authors/id/O/OA/OALDERS/WWW-Mechanize-1.88.tar.gz" sha256 "36d97e778ab911ab5a762d551541686cbf3463c571f474322f7b5da77f50a879" end resource "Term::ProgressBar" do url "https://cpan.metacpan.org/authors/id/M/MA/MANWAR/Term-ProgressBar-2.21.tar.gz" sha256 "66994f1a6ca94d8d92e3efac406142fb0d05033360c0acce2599862db9c30e44" end resource "Class::MethodMaker" do url "https://cpan.metacpan.org/authors/id/S/SC/SCHWIGON/class-methodmaker/Class-MethodMaker-2.24.tar.gz" sha256 "5eef58ccb27ebd01bcde5b14bcc553b5347a0699e5c3e921c7780c3526890328" end resource "Crypt::Rijndael" do url "https://cpan.metacpan.org/authors/id/L/LE/LEONT/Crypt-Rijndael-1.13.tar.gz" sha256 "cd7209a6dfe0a3dc8caffe1aa2233b0e6effec7572d76a7a93feefffe636214e" end def install ENV.prepend_create_path "PERL5LIB", libexec/"lib/perl5" resources.each do |r| r.stage do system "perl", "Makefile.PL", "INSTALL_BASE=#{libexec}" system "make" system "make", "install" end end ENV.prepend_create_path "PERL5LIB", lib/"perl5" system "make" (lib/"perl5").install "blib/lib/FlashVideo" bin.install "bin/get_flash_videos" bin.env_script_all_files(libexec/"bin", :PERL5LIB => ENV["PERL5LIB"]) chmod 0755, libexec/"bin/get_flash_videos" man1.install "blib/man1/get_flash_videos.1" end test do file = testpath/"BBC_-__Do_whatever_it_takes_to_get_him_to_talk.flv" system bin/"get_flash_videos", "http://news.bbc.co.uk/2/hi/programmes/hardtalk/9560793.stm" assert_predicate file, :exist?, "Failed to download #{file}!" end end