Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 7f1d83e

Browse files
committed
mvtools v20
1 parent 1d06d72 commit 7f1d83e

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

Formula/vsp-mvtools.rb

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,20 @@ class VspMvtools < Formula
66
sha256 "9a1bc87b9bad6642dd7d69b1b6e200c1d962ef55fc2787581e5d2cb437aa0b23"
77
head "https://github.com/dubhater/vapoursynth-mvtools.git"
88

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
1112
depends_on "pkg-config" => :build
1213
depends_on "yasm" => :build
1314
depends_on "vapoursynth"
1415
depends_on "fftw"
1516

1617
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"
2023
end
2124
def post_install
2225
ohai ""

0 commit comments

Comments
 (0)