File tree Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -6,17 +6,20 @@ class VspMvtools < Formula
6
6
sha256 "9a1bc87b9bad6642dd7d69b1b6e200c1d962ef55fc2787581e5d2cb437aa0b23"
7
7
head "https://github.com/dubhater/vapoursynth-mvtools.git"
8
8
9
- depends_on "meson" => :build
10
- depends_on "ninja" => :build
9
+ depends_on "autoconf" => :build
10
+ depends_on "automake" => :build
11
+ depends_on "libtool" => :build
11
12
depends_on "pkg-config" => :build
12
13
depends_on "yasm" => :build
13
14
depends_on "vapoursynth"
14
15
depends_on "fftw"
15
16
16
17
def install
17
- system "meson" , "--prefix" , "#{ prefix } " , "build"
18
- system "ninja" , "-C" , "build"
19
- system "ninja" , "-C" , "build" , "install"
18
+ system "./autogen.sh"
19
+ system "./configure" , "--disable-debug" ,
20
+ "--disable-dependency-tracking" ,
21
+ "--prefix=#{ prefix } "
22
+ system "make" , "install"
20
23
end
21
24
def post_install
22
25
ohai ""
You can’t perform that action at this time.
0 commit comments