aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/mpegdemux.rb
blob: 16cf48e82b71c82319a4d8a75f87b9edb9bf7453 (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

  def test
    system "#{bin}/mpegdemux", "--help"
  end
end