mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-24 10:02:29 +01:00
multimedia/mkvtoolnix: Updated for version 4.7.0.
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
This commit is contained in:
parent
9b1ed1baf9
commit
b47df3d587
3 changed files with 19 additions and 23 deletions
|
@ -1,14 +1,8 @@
|
||||||
MKVToolnix is a set of tools to create, alter and inspect Matroska
|
MKVToolnix is a set of tools to create, alter and inspect Matroska
|
||||||
(and WebM) files. With these tools one can:
|
(and WebM) files. With these tools one can:
|
||||||
|
|
||||||
* Get information about Matroska files (mkvinfo) * Extract tracks/data
|
MKVToolnix requires wxGTK or wxPython. It comes with internal versions
|
||||||
from Matroska files (mkvextract) * Create Matroska files from other
|
of libembl and libmatroska, and it will use the internal versions if they
|
||||||
media files (mkvmerge) * Modify properties of existing Matroska files
|
are not installed on the system.
|
||||||
(mkvpropedit)
|
|
||||||
|
|
||||||
This requires wxGTK or wxPython.
|
Interested parties can build a QT GUI by passing QTGUI=yes to the script.
|
||||||
|
|
||||||
It comes with internal versions of libembl and libmatroska, which will
|
|
||||||
be used if system-wide installations of them are not present.
|
|
||||||
|
|
||||||
Interested parties can build a QT GUI by passing QTGUI=yes
|
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
# Maintained by Ozan Türkyılmaz ozan.turkyilmaz@gmail.com
|
# Maintained by Ozan Türkyılmaz ozan.turkyilmaz@gmail.com
|
||||||
|
|
||||||
PRGNAM=mkvtoolnix
|
PRGNAM=mkvtoolnix
|
||||||
VERSION=4.6.0
|
VERSION=4.7.0
|
||||||
BUILD=${BUILD:-1}
|
BUILD=${BUILD:-1}
|
||||||
TAG=${TAG:-_SBo}
|
TAG=${TAG:-_SBo}
|
||||||
|
|
||||||
|
@ -60,12 +60,19 @@ fi
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
|
if [ "$QTGUI" = "yes" ]; then
|
||||||
|
QTCONFIG="enable-"
|
||||||
|
else
|
||||||
|
QTCONFIG="disable-"
|
||||||
|
fi
|
||||||
|
|
||||||
rm -rf $PKG
|
rm -rf $PKG
|
||||||
mkdir -p $TMP $PKG $OUTPUT
|
mkdir -p $TMP $PKG $OUTPUT
|
||||||
cd $TMP
|
cd $TMP
|
||||||
rm -rf $PRGNAM-$VERSION
|
rm -rf $PRGNAM-$VERSION
|
||||||
tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2
|
tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2
|
||||||
cd $PRGNAM-$VERSION
|
cd $PRGNAM-$VERSION
|
||||||
|
|
||||||
chown -R root:root .
|
chown -R root:root .
|
||||||
find . \
|
find . \
|
||||||
\( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
|
\( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
|
||||||
|
@ -73,25 +80,20 @@ find . \
|
||||||
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
|
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
|
||||||
-exec chmod 644 {} \;
|
-exec chmod 644 {} \;
|
||||||
|
|
||||||
if [ "$QTGUI" = "yes" ]; then
|
|
||||||
do_qt_config="enable-qt"
|
|
||||||
else
|
|
||||||
do_qt_config="disable-qt"
|
|
||||||
fi
|
|
||||||
|
|
||||||
CFLAGS="$SLKCFLAGS" \
|
CFLAGS="$SLKCFLAGS" \
|
||||||
CXXFLAGS="$SLKCFLAGS" \
|
CXXFLAGS="$SLKCFLAGS" \
|
||||||
./configure \
|
./configure \
|
||||||
|
--build=$ARCH-slackware-linux \
|
||||||
--prefix=/usr \
|
--prefix=/usr \
|
||||||
--libdir=/usr/lib${LIBDIRSUFFIX} \
|
--libdir=/usr/lib${LIBDIRSUFFIX} \
|
||||||
--sysconfdir=/etc \
|
--sysconfdir=/etc \
|
||||||
--mandir=/usr/man \
|
--mandir=/usr/man \
|
||||||
|
--docdir=/usr/doc/$PRGNAM-$VERSION \
|
||||||
--localstatedir=/var \
|
--localstatedir=/var \
|
||||||
--enable-gui \
|
--enable-gui \
|
||||||
--${do_qt_config} \
|
--${QTCONFIG}qt \
|
||||||
--enable-wxwidgets \
|
--enable-wxwidgets \
|
||||||
--with-boost \
|
--with-boost
|
||||||
--build=$ARCH-slackware-linux
|
|
||||||
|
|
||||||
./drake pkgdatadir=/usr/doc/$PRGNAM-$VERSION
|
./drake pkgdatadir=/usr/doc/$PRGNAM-$VERSION
|
||||||
./drake pkgdatadir=/usr/doc/$PRGNAM-$VERSION install DESTDIR=$PKG
|
./drake pkgdatadir=/usr/doc/$PRGNAM-$VERSION install DESTDIR=$PKG
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
PRGNAM="mkvtoolnix"
|
PRGNAM="mkvtoolnix"
|
||||||
VERSION="4.6.0"
|
VERSION="4.7.0"
|
||||||
HOMEPAGE="http://www.bunkus.org/videotools/mkvtoolnix"
|
HOMEPAGE="http://www.bunkus.org/videotools/mkvtoolnix"
|
||||||
DOWNLOAD="http://www.bunkus.org/videotools/mkvtoolnix/sources/mkvtoolnix-4.6.0.tar.bz2"
|
DOWNLOAD="http://www.bunkus.org/videotools/mkvtoolnix/sources/mkvtoolnix-4.7.0.tar.bz2"
|
||||||
MD5SUM="ca4e5b226175a6df2f9fdad206abf0a8"
|
MD5SUM="68200debce9570fc14d934a3d6a750b5"
|
||||||
DOWNLOAD_x86_64=""
|
DOWNLOAD_x86_64=""
|
||||||
MD5SUM_x86_64=""
|
MD5SUM_x86_64=""
|
||||||
MAINTAINER="Ozan Türkyılmaz"
|
MAINTAINER="Ozan Türkyılmaz"
|
||||||
|
|
Loading…
Reference in a new issue