33 lines
1003 B
Ruby
33 lines
1003 B
Ruby
class Overdrive < Formula
|
|
desc "Bash script to download mp3s from the OverDrive audiobook service"
|
|
homepage "https://github.com/chbrown/overdrive"
|
|
url "https://github.com/chbrown/overdrive/archive/2.3.1.tar.gz"
|
|
sha256 "dc64b2c026d328b72e2e8bb0416387ea9ba53a12b45bc77811c12e7725e9e0ec"
|
|
license "MIT"
|
|
head "https://github.com/chbrown/overdrive.git", branch: "master"
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, all: "b698873d3befaf71c5b14d172ca06df202e311c5b6d2f7f285b1749a4b0a1ab1"
|
|
end
|
|
|
|
depends_on "tidy-html5"
|
|
|
|
uses_from_macos "curl"
|
|
uses_from_macos "libxml2"
|
|
|
|
on_linux do
|
|
depends_on "openssl@1.1" # for openssl (non keg-only)
|
|
depends_on "util-linux" # for uuidgen
|
|
end
|
|
|
|
def install
|
|
bin.install "overdrive.sh" => "overdrive"
|
|
end
|
|
|
|
test do
|
|
# A full run would require an authentic file, which can only be used once
|
|
assert_match "Specified media file does not exist",
|
|
shell_output("#{bin}/overdrive download fake_file.odm 2>&1", 2)
|
|
end
|
|
end
|