slackbuilds_ponce/multimedia/mlt/mlt.SlackBuild
Matteo Bernardini fab03ccc55 multimedia/mlt: Autodetect which swig bindings to build.
Added the optional dependencies libvdpau and jack-rack

Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
2012-10-07 09:15:25 -04:00

182 lines
5.7 KiB
Bash

#!/bin/sh
# Slackware build script for mlt.
# Written by stormtracknole - stormtracknole@gmail.com
# Modified by Erik Hanson (erik@slackbuilds.org) with
# help from Jonathan Larsen (agentc0re@learnix.net)
#
# Feb 16, 2010 - Modified the script and defined the $PYTHON variable
# outside of the if statement because it was causing issues with
# the other if statement that also relies on it's answer.
# - Fixed the second PYTHON if statement that finds the site package
# directory. Added parentheses around the part that cd's into the
# python swig src to copy the files to the site packages so that it
# would interfere with the CWD before it
#
# +---------------------------------------+
# Mar 3rd, 2010
# *Version upgrade to 0.5.2
# *fixed the "strip" for bash 4
# compatability
# +---------------------------------------+
# Sept 12, 2010
# *Version upgrade to 0.5.6
# *Bug fixes and enhancements added
# +---------------------------------------+
# May 16, 2011
# *Version upgrade to 0.7.2
# +---------------------------------------+
# Dec 14, 2011
# *Version upgrade to 0.7.6
# *Bug fixes
# +---------------------------------------+
# Jul 2, 2012
# *Version upgrade to 0.8.0
# *Bug fixes
# +---------------------------------------+
PRGNAM=mlt
VERSION=${VERSION:-0.8.2}
BUILD=${BUILD:-2}
TAG=${TAG:-_SBo}
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
i?86) ARCH=i486 ;;
arm*) ARCH=arm ;;
*) ARCH=$( uname -m ) ;;
esac
fi
CWD=$(pwd)
TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
# Autodetect which SWIG Languages bindings to build
# according to what's installed on the system:
if [ -f "$(which java)" ]; then java="java"; else java=""; fi
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
if pkg-config --exists vdpau ; then vdpau="--avformat-vdpau" ; else vdpau="" ; fi
if [ "$ARCH" = "i486" ]; then
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
else
SLKCFLAGS="-O2"
LIBDIRSUFFIX=""
fi
set -e
rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf $PRGNAM-$VERSION
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
cd $PRGNAM-$VERSION
chown -R root:root .
find . \
\( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
-exec chmod 755 {} \; -o \
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
-exec chmod 644 {} \;
CFLAGS="$SLKCFLAGS" \
CXXFLAGS="$SLKCFLAGS" \
./configure \
--disable-debug \
--prefix=/usr \
--libdir=/usr/lib${LIBDIRSUFFIX} \
--qimage-libdir=${QT4DIR}/qt/lib \
--qimage-includedir=${QT4DIR}/qt/include \
--enable-gpl \
--luma-compress \
--enable-motion-est \
$vdpau \
--swig-languages="$java $lua $perl $php $python $ruby $tcl $csharp" \
--build=$ARCH-slackware-linux
make clean
CFLAGS="$SLKCFLAGS" CXXFLAGS="$SLKCFLAGS" make
make install DESTDIR=$PKG
# Install built bindings
if [ "$lua" ]; then
( cd $TMP/$PRGNAM-$VERSION/src/swig/lua
install -D -m 0755 mlt.so $(pkg-config --variable INSTALL_CMOD lua)/mlt.so
install -D -m 0644 play.lua $PKG/usr/doc/$PRGNAM-$VERSION/play.lua
)
fi
if [ "$perl" ]; then
( cd $TMP/$PRGNAM-$VERSION/src/swig/perl
install -D -m 0644 mlt.pm $PKG/usr/share/perl5/mlt.pm
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 \
$PKG/usr/lib$LIBDIRSUFFIX/perl5/auto/mlt/mlt.bs
)
fi
if [ "$php" ]; then
( cd $TMP/$PRGNAM-$VERSION/src/swig/php
install -D -m 0755 mlt.so $PKG/usr/lib$LIBDIRSUFFIX/php/extensions/mlt.so
install -D -m 0644 play.php $PKG/usr/doc/$PRGNAM-$VERSION/play.php
)
fi
if [ "$python" ]; then
PYTHONSITEPKG=$(python -c "import sys, os; print os.path.join('/usr/lib${LIBDIRSUFFIX}', 'python%s' % sys.version[:3], 'site-packages')")
( cd $TMP/$PRGNAM-$VERSION/src/swig/python
install -D -m 0755 _mlt.so $PKG/$PYTHONSITEPKG/_mlt.so
install -D -m 0755 mlt.py $PKG/$PYTHONSITEPKG/mlt.py
install -D -m 0755 play.py $PKG/usr/doc/$PRGNAM-$VERSION/play.py
)
fi
if [ "$ruby" ]; then
( cd $TMP/$PRGNAM-$VERSION/src/swig/ruby
install -D -m 0755 mlt.so \
$PKG$(ruby -e 'print RbConfig::CONFIG["sitearchdir"]')/mlt.so
install -D -m 0755 play.rb $PKG/usr/doc/$PRGNAM-$VERSION/play.rb
install -D -m 0755 thumbs.rb $PKG/usr/doc/$PRGNAM-$VERSION/thumbs.rb
)
fi
if [ "$tcl" ]; then
( cd $TMP/$PRGNAM-$VERSION/src/swig/tcl
. /usr/lib$LIBDIRSUFFIX/tclConfig.sh
install -D -m 0755 mlt.so \
$PKG/usr/lib$LIBDIRSUFFIX/tcl$TCL_MAJOR_VERSION/$TCL_VERSION/mlt.so
install -D -m 0755 play.tcl $PKG/usr/doc/$PRGNAM-$VERSION/play.tcl
)
fi
# todo: java, csharp
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp AUTHORS ChangeLog NEWS COPYING README GPL \
$PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
mkdir -p $PKG/install
cat $CWD/slack-desc > $PKG/install/slack-desc
cat $CWD/doinst.sh > $PKG/install/doinst.sh
cd $PKG
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}