mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-20 19:41:34 +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
|
||||
(and WebM) files. With these tools one can:
|
||||
|
||||
* Get information about Matroska files (mkvinfo) * Extract tracks/data
|
||||
from Matroska files (mkvextract) * Create Matroska files from other
|
||||
media files (mkvmerge) * Modify properties of existing Matroska files
|
||||
(mkvpropedit)
|
||||
MKVToolnix requires wxGTK or wxPython. It comes with internal versions
|
||||
of libembl and libmatroska, and it will use the internal versions if they
|
||||
are not installed on the system.
|
||||
|
||||
This requires wxGTK or wxPython.
|
||||
|
||||
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
|
||||
Interested parties can build a QT GUI by passing QTGUI=yes to the script.
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
# Maintained by Ozan Türkyılmaz ozan.turkyilmaz@gmail.com
|
||||
|
||||
PRGNAM=mkvtoolnix
|
||||
VERSION=4.6.0
|
||||
VERSION=4.7.0
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
|
@ -60,12 +60,19 @@ fi
|
|||
|
||||
set -e
|
||||
|
||||
if [ "$QTGUI" = "yes" ]; then
|
||||
QTCONFIG="enable-"
|
||||
else
|
||||
QTCONFIG="disable-"
|
||||
fi
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
rm -rf $PRGNAM-$VERSION
|
||||
tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2
|
||||
cd $PRGNAM-$VERSION
|
||||
|
||||
chown -R root:root .
|
||||
find . \
|
||||
\( -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 \) \
|
||||
-exec chmod 644 {} \;
|
||||
|
||||
if [ "$QTGUI" = "yes" ]; then
|
||||
do_qt_config="enable-qt"
|
||||
else
|
||||
do_qt_config="disable-qt"
|
||||
fi
|
||||
|
||||
CFLAGS="$SLKCFLAGS" \
|
||||
CXXFLAGS="$SLKCFLAGS" \
|
||||
./configure \
|
||||
--build=$ARCH-slackware-linux \
|
||||
--prefix=/usr \
|
||||
--libdir=/usr/lib${LIBDIRSUFFIX} \
|
||||
--sysconfdir=/etc \
|
||||
--mandir=/usr/man \
|
||||
--docdir=/usr/doc/$PRGNAM-$VERSION \
|
||||
--localstatedir=/var \
|
||||
--enable-gui \
|
||||
--${do_qt_config} \
|
||||
--${QTCONFIG}qt \
|
||||
--enable-wxwidgets \
|
||||
--with-boost \
|
||||
--build=$ARCH-slackware-linux
|
||||
--with-boost
|
||||
|
||||
./drake pkgdatadir=/usr/doc/$PRGNAM-$VERSION
|
||||
./drake pkgdatadir=/usr/doc/$PRGNAM-$VERSION install DESTDIR=$PKG
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
PRGNAM="mkvtoolnix"
|
||||
VERSION="4.6.0"
|
||||
VERSION="4.7.0"
|
||||
HOMEPAGE="http://www.bunkus.org/videotools/mkvtoolnix"
|
||||
DOWNLOAD="http://www.bunkus.org/videotools/mkvtoolnix/sources/mkvtoolnix-4.6.0.tar.bz2"
|
||||
MD5SUM="ca4e5b226175a6df2f9fdad206abf0a8"
|
||||
DOWNLOAD="http://www.bunkus.org/videotools/mkvtoolnix/sources/mkvtoolnix-4.7.0.tar.bz2"
|
||||
MD5SUM="68200debce9570fc14d934a3d6a750b5"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
MAINTAINER="Ozan Türkyılmaz"
|
||||
|
|
Loading…
Reference in a new issue