Transcode 1.1.5
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
parent
5a28951061
commit
2e040a1194
1 changed files with 43 additions and 0 deletions
43
Formula/transcode.rb
Normal file
43
Formula/transcode.rb
Normal file
|
@ -0,0 +1,43 @@
|
|||
require 'formula'
|
||||
|
||||
class Transcode < Formula
|
||||
url 'http://download.berlios.de/tcforge/transcode-1.1.5.tar.bz2'
|
||||
homepage 'http://www.transcoding.org/'
|
||||
md5 '41ac6b1c0fe30f3aab286e771fc31b9e'
|
||||
|
||||
depends_on 'pkg-config' => :build
|
||||
depends_on 'sdl'
|
||||
depends_on 'libmpeg2'
|
||||
depends_on 'a52dec'
|
||||
depends_on 'libdv'
|
||||
depends_on 'lzo'
|
||||
depends_on 'libogg'
|
||||
depends_on 'ffmpeg'
|
||||
depends_on 'imagemagick'
|
||||
depends_on 'libdvdread'
|
||||
depends_on 'libquicktime'
|
||||
|
||||
def install
|
||||
args = ["--disable-debug", "--disable-dependency-tracking",
|
||||
"--prefix=#{prefix}",
|
||||
"--enable-a52",
|
||||
"--enable-faac",
|
||||
"--enable-imagemagick",
|
||||
"--enable-libdv",
|
||||
"--enable-ogg",
|
||||
"--enable-libquicktime",
|
||||
"--enable-theora",
|
||||
"--enable-vorbis",
|
||||
"--enable-libxml2",
|
||||
"--enable-lzo",
|
||||
"--enable-x264",
|
||||
"--enable-xvid",
|
||||
"--enable-sdl",
|
||||
"--without-x"]
|
||||
|
||||
args << "--build=x86_64-apple-darwin10.0.0" if MacOS.prefer_64_bit?
|
||||
|
||||
system './configure', *args
|
||||
system "make install"
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue