mlt: style nits

This commit is contained in:
Dominyk Tiller 2016-06-19 14:37:35 +01:00
parent 856dbc27b2
commit 86beac90f1
No known key found for this signature in database
GPG key ID: FE19AEFCF658C6F6

View file

@ -11,7 +11,6 @@ class Mlt < Formula
end
depends_on "pkg-config" => :build
depends_on "ffmpeg"
depends_on "frei0r"
depends_on "libdv"
@ -21,14 +20,11 @@ class Mlt < Formula
depends_on "sox"
def install
args = ["--prefix=#{prefix}",
"--disable-jackrack",
"--disable-swfdec",
"--disable-gtk",
"--enable-gpl"]
system "./configure", *args
system "./configure", "--prefix=#{prefix}",
"--disable-jackrack",
"--disable-swfdec",
"--disable-gtk",
"--enable-gpl"
system "make"
system "make", "install"
end