mpegdemux 0.1.4

Closes Homebrew/homebrew#17223.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Andrew Erickson 2013-01-20 23:51:31 -08:00 committed by Adam Vandenberg
parent 1e3ffaebf7
commit 59cf64c4c6
1 changed files with 17 additions and 0 deletions

17
Formula/mpegdemux.rb Normal file
View File

@ -0,0 +1,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
def test
system "#{bin}/mpegdemux", "--help"
end
end