1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
|
class Avidemux < Formula
homepage "http://fixounet.free.fr/avidemux/"
stable do
url "https://downloads.sourceforge.net/avidemux/avidemux_2.6.8.tar.gz"
sha256 "02998c235a89894d184d745c94cac37b78bc20e9eb44b318ee2bb83f2507e682"
# remove ffmpeg binary from targets (fixed upstream)
# http://avidemux.org/smuf/index.php/topic,16379.15.html
patch do
url "https://github.com/mean00/avidemux2/commit/bf0185.diff"
sha256 "3ca5b4f1b5b3ec407a3daa5c811862ea6ed7ef6cdaaf187045e6e1c77c193800"
end
end
head do
url "https://github.com/mean00/avidemux2.git"
depends_on "x265"
end
revision 1
bottle do
revision 1
sha256 "fa2b13a72237291bd555a2334ca99999e6a327efbec4093a4e5ee631d31a28f9" => :yosemite
sha256 "b7f2d3c12e1ca1b6a432a86113c5c51111714d7dca0554571ecd967011bf14c0" => :mavericks
sha256 "d2db93800dd97059bfea0802225aa49e6daa88bbf43b8bffd2f2077d51d6b792" => :mountain_lion
end
option "with-debug", "Enable debug build."
depends_on "pkg-config" => :build
depends_on "cmake" => :build
depends_on "yasm" => :build
depends_on "xvid" => [:build, :recommended]
depends_on "libvpx" => [:build, :recommended]
depends_on "libass" => [:build, :recommended]
depends_on "fontconfig"
depends_on "gettext"
depends_on "x264" => :recommended
depends_on "faac" => :recommended
depends_on "faad2" => :recommended
depends_on "lame" => :recommended
depends_on "freetype" => :recommended
depends_on "libvorbis" => :recommended
depends_on "opencore-amr" => :recommended
depends_on "aften" => :recommended
depends_on "libdca" => :recommended
depends_on "qt" => :recommended
depends_on "jack" => :optional
depends_on "two-lame" => :optional
depends_on "fribidi" => :optional
depends_on "sdl2" => :optional
if build.with? "sdl2"
# fix compilation against SDL, change deprecated NSQuickDrawView to NSView
# (submitted patch to developer via email)
patch do
url "https://gist.githubusercontent.com/Noctem/2c03f24daf6705964347/raw/dd6d27374e5ed44678f25b84da159ea57a9d8857/avidemux-sdl.patch"
sha256 "17cb0181fbe503e84ad9b2762eb182ad4ec3ef8df8a90741e4f3c0e4d0a8f1ff"
end
end
def install
ENV["REV"] = version.to_s
# For 32-bit compilation under gcc 4.2, see:
# http://trac.macports.org/ticket/20938#comment:22
if MacOS.version <= :leopard || (Hardware.is_32_bit? && Hardware::CPU.intel? && ENV.compiler == :clang)
inreplace "cmake/admFFmpegBuild.cmake",
"${CMAKE_INSTALL_PREFIX})",
"${CMAKE_INSTALL_PREFIX} --extra-cflags=-mdynamic-no-pic)"
end
# Build the core
mkdir "buildCore" do
args = std_cmake_args
args << "-DAVIDEMUX_SOURCE_DIR=#{buildpath}"
args << "-DGETTEXT_INCLUDE_DIR=#{Formula["gettext"].opt_include}"
args << "-DSDL=OFF" if build.without? "sdl2"
if build.with? "debug"
ENV.O2
ENV.enable_warnings
args << "-DCMAKE_BUILD_TYPE=Debug"
unless ENV.compiler == :clang
args << "-DCMAKE_C_FLAGS_DEBUG=-ggdb3"
args << "-DCMAKE_CXX_FLAGS_DEBUG=-ggdb3"
end
end
args << "../avidemux_core"
system "cmake", *args
# Parallel build sometimes fails with:
# "ld: library not found for -lADM6avcodec"
ENV.deparallelize
system "make"
system "make", "install"
# There is no ENV.parallelize, so:
ENV["MAKEFLAGS"] = "-j#{ENV.make_jobs}"
end
# UIs: Build Qt4 and cli
interfaces = ["cli"]
interfaces << "qt4" if build.with? "qt"
interfaces.each do |interface|
mkdir "build#{interface}" do
args = std_cmake_args
args << "-DAVIDEMUX_SOURCE_DIR=#{buildpath}"
args << "-DAVIDEMUX_LIB_DIR=#{lib}"
args << "-DSDL=OFF" if build.without? "sdl2"
args << "../avidemux/#{interface}"
system "cmake", *args
system "make"
system "make", "install"
end
end
# Plugins
plugins = ["COMMON", "CLI"]
plugins << "QT4" if build.with? "qt"
plugins.each do |plugin|
mkdir "buildplugin#{plugin}" do
args = std_cmake_args + %W[
-DPLUGIN_UI=#{plugin}
-DAVIDEMUX_LIB_DIR=#{lib}
-DAVIDEMUX_SOURCE_DIR=#{buildpath}
]
if build.with? "debug"
args << "-DCMAKE_BUILD_TYPE=Debug"
unless ENV.compiler == :clang
args << "-DCMAKE_C_FLAGS_DEBUG=-ggdb3"
args << "-DCMAKE_CXX_FLAGS_DEBUG=-ggdb3"
end
end
args << "../avidemux_plugins"
system "cmake", *args
system "make"
system "make", "install"
end
end
# Steps from the bootStrapOsx.bash:
app = prefix/"Avidemux2.6.app/Contents"
mkdir_p app/"Resources"
mkdir_p app/"MacOS"
cp_r "./cmake/osx/Avidemux2.6", app/"MacOS/Avidemux2.6.app"
chmod 0755, app/"MacOS/Avidemux2.6.app"
if build.with? "qt"
qt_opt = Formula["qt"].opt_lib
cp_r "#{qt_opt}/QtGui.framework/Resources/qt_menu.nib", app/"MacOS/"
end
cp "./cmake/osx/Info.plist", app
(app/"Resources").install_symlink bin, lib
cp Dir["./cmake/osx/*.icns"], app/"Resources/"
end
def caveats
if build.with? "qt" then <<-EOS.undent
To enable sound: In preferences, set the audio to CoreAudio instead of Dummy.
EOS
end
end
test do
system "#{bin}/avidemux_cli", "--help"
end
end
|