multimedia/bino: Updated for version 1.6.5.

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
Willy Sudiarto Raharjo 2017-04-08 20:57:32 +07:00
parent 5189793bc0
commit 89a2498176
3 changed files with 16 additions and 14 deletions

View file

@ -7,3 +7,10 @@ have separate views for the left and right eye and thus allow depth
perception through stereopsis.
The left and right view of a stereoscopic video can be stored using
different layouts. Bino supports all commonly used layouts.
NOTE:
This SlackBuild build with Qt4 even though the default from upstream
is Qt5. It's still broken at this moment.
Optional dependency: lirc for infra-red support.
You may need to edit the SlackBuild to enable lirc.

View file

@ -23,13 +23,13 @@
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
PRGNAM=bino
VERSION=${VERSION:-1.6.1}
VERSION=${VERSION:-1.6.5}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
i?86) ARCH=i486 ;;
i?86) ARCH=i586 ;;
arm*) ARCH=arm ;;
*) ARCH=$( uname -m ) ;;
esac
@ -40,8 +40,8 @@ TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
if [ "$ARCH" = "i486" ]; then
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
if [ "$ARCH" = "i586" ]; then
SLKCFLAGS="-O2 -march=i586 -mtune=i686"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
@ -62,7 +62,6 @@ cd $TMP
rm -rf $PRGNAM-$VERSION
tar xvf $CWD/$PRGNAM-$VERSION.tar.xz
cd $PRGNAM-$VERSION
chown -R root:root .
find -L . \
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
@ -80,7 +79,8 @@ CXXFLAGS="$SLKCFLAGS" \
--mandir=/usr/man \
--docdir=/usr/doc/$PRGNAM-$VERSION \
--without-equalizer \
--without-liblircclient \
--without-lirc \
--with-qt-version=4 \
--build=$ARCH-slackware-linux
make
@ -92,11 +92,6 @@ find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | gr
find $PKG/usr/man -type f -exec gzip -9 {} \;
for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
find $PKG -name perllocal.pod \
-o -name ".packlist" \
-o -name "*.bs" \
| xargs rm -f
rm -Rf $PKG/usr/info/dir $PKG/usr/share/info
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION

View file

@ -1,8 +1,8 @@
PRGNAM="bino"
VERSION="1.6.1"
VERSION="1.6.5"
HOMEPAGE="http://bino3d.org"
DOWNLOAD="http://download.savannah.nongnu.org/releases/bino/bino-1.6.1.tar.xz"
MD5SUM="59471d7eb3b6981a1e610f96a12ff47c"
DOWNLOAD="http://download.savannah.nongnu.org/releases/bino/bino-1.6.5.tar.xz"
MD5SUM="36da300a320481ae9637c66f1f4617d9"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES="ffmpeg freealut libass"