diff options
author | Matteo Bernardini <ponce@slackbuilds.org> | 2015-11-03 18:22:50 +0100 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2016-01-17 09:40:16 +0700 |
commit | 6e84913ea47060960e5e990b1011a52f79f29493 (patch) | |
tree | e15c746bce4ffed5066332f18a71e482d680a25b /multimedia/mlt | |
parent | 1a904345b5ad3026a4c3a315376673c95cca2de5 (diff) | |
download | slackbuilds-6e84913ea47060960e5e990b1011a52f79f29493.tar.gz |
multimedia/mlt: Disable ruby bindings.
Not compatible with ruby-2.2 in current (for now).
Fix also location on a perl file
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'multimedia/mlt')
-rw-r--r-- | multimedia/mlt/mlt.SlackBuild | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/multimedia/mlt/mlt.SlackBuild b/multimedia/mlt/mlt.SlackBuild index a45452f28c..3e353e0391 100644 --- a/multimedia/mlt/mlt.SlackBuild +++ b/multimedia/mlt/mlt.SlackBuild @@ -72,9 +72,10 @@ if [ -f "$(which lua)" ]; then lua="lua"; else lua=""; fi if [ -f "$(which perl)" ]; then perl="perl"; else perl=""; fi if [ -f "$(which php)" ]; then php="php"; else php=""; fi if [ -f "$(which python)" ]; then python="python"; else python=""; fi -if [ -f "$(which ruby)" ]; then ruby="ruby"; else ruby=""; fi if [ -h "$(which tclsh)" ]; then tcl="tcl"; else tcl=""; fi if [ -f "$(which csharp)" ]; then csharp="csharp"; else csharp=""; fi +# ruby-2.2 gives issues... probably more recent mlt versions will fix this +ruby="" #if [ -f "$(which ruby)" ]; then ruby="ruby"; else ruby=""; fi if pkg-config --exists vdpau ; then vdpau="--avformat-vdpau" ; else vdpau="" ; fi @@ -139,7 +140,7 @@ if [ "$perl" ]; then install -D -m 0755 play.pl $PKG/usr/share/perl5/play.pl install -D -m 0755 blib/arch/auto/mlt/mlt.so \ $PKG/usr/lib$LIBDIRSUFFIX/perl5/auto/mlt/mlt.so - install -D -m 0644 blib/arch/auto/mlt/mlt.bs \ + install -D -m 0644 mlt.bs \ $PKG/usr/lib$LIBDIRSUFFIX/perl5/auto/mlt/mlt.bs ) fi |