Add formula for flvtool++

flvtool++ is a tool for hinting and manipulating the metadata of FLV files.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Hasan Veldstra 2010-11-12 11:22:59 +00:00 committed by Adam Vandenberg
parent 6c05685c91
commit 679db45294

15
Formula/flvtool++.rb Normal file
View file

@ -0,0 +1,15 @@
require 'formula'
class Flvtoolxx <Formula
url 'http://mirror.facebook.net/facebook/flvtool++/flvtool++-1.2.1.tar.gz'
homepage 'http://developers.facebook.com/opensource/'
md5 'a8c4c578b4c6741a94ca6eb197a01fe1'
depends_on 'scons' => :build
depends_on 'boost'
def install
system 'scons'
bin.install 'flvtool++'
end
end