diff options
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 a45452f28c03..3e353e0391bf 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 |