blob: b79032bbac873d91fc04b61ae786cd93db2820d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
require 'formula'
class H264bitstream < Formula
homepage 'http://h264bitstream.sourceforge.net/'
url 'https://downloads.sourceforge.net/project/h264bitstream/h264bitstream/0.1.9/h264bitstream-0.1.9.tar.gz'
sha1 '5e12e765641e76f86b794f939bf99405c4e4d373'
def install
system './configure', "--prefix=#{prefix}"
system 'make install'
end
end
|