blob: 7c6ae0537bfd479b6007c8f7cb689e06fdec5763 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
require 'formula'
class Mpegdemux < Formula
homepage 'http://www.hampa.ch/mpegdemux/'
url 'http://www.hampa.ch/mpegdemux/mpegdemux-0.1.4.tar.gz'
sha1 '1778304fbe6f8be4d25034d1b6a8acef6c91e311'
def install
system "./configure", "--prefix=#{prefix}"
system "make"
system "make install"
end
test do
system "#{bin}/mpegdemux", "--help"
end
end
|