blob: 847927a2d1c1c3ef85e1c4b2a31adb31b36e589e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
require 'formula'
class YleDl < Formula
homepage 'http://aajanki.github.io/yle-dl/'
url 'https://github.com/aajanki/yle-dl/archive/2.1.0.tar.gz'
sha1 'c2c05e3693737e864c4b296de022dc016c9f6865'
head 'https://github.com/aajanki/yle-dl.git'
depends_on 'rtmpdump'
depends_on :python
depends_on "pycrypto" => [:python, "Crypto"]
def install
system "make", "install", "SYS=darwin", "prefix=#{prefix}", "mandir=#{man}"
end
test do
assert_match /rtmpdump: This program dumps the media content streamed over RTMP/,
`#{bin}/yle-dl --help 2>&1`.strip
end
end
|