26 lines
1.1 KiB
Ruby
26 lines
1.1 KiB
Ruby
class Movgrab < Formula
|
|
desc "Downloader for youtube, dailymotion, and other video websites"
|
|
homepage "https://sites.google.com/site/columscode/home/movgrab"
|
|
url "https://sites.google.com/site/columscode/files/movgrab-1.2.1.tar.gz"
|
|
sha256 "1e9a57b1c934d8584f9133d918c1ceecfe102bbaf9fb4c8ab174a642917ae4a8"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "aa40b9cb2e4c947ced14535bcb0e4bf189cf90ca786a7386b372abc6e92ed90a" => :sierra
|
|
sha256 "82cb6ea3423aabf6ae277fcdb2d6ae497021ba5ea7b9c58d6f3553ecebe1bb17" => :el_capitan
|
|
sha256 "aac759c0e0b95b7ccf0e9a446d78e360be70aacf43f341eb1f785e8c7396b8cc" => :yosemite
|
|
sha256 "f36f583c82bf0b4fda8b918fde44d0631950544c48f313ac3ed52b9dee6af7de" => :mavericks
|
|
end
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
|
|
system "make"
|
|
|
|
# because case-insensitivity is sadly a thing and while the movgrab
|
|
# Makefile itself doesn't declare INSTALL as a phony target, we
|
|
# just remove the INSTALL instructions file so we can actually
|
|
# just make install
|
|
rm "INSTALL"
|
|
system "make", "install"
|
|
end
|
|
end
|