libraries/libmatroska: Updated for version 1.0.0.
Signed-off-by: Erik Hanson <erik@slackbuilds.org>
This commit is contained in:
parent
6b07118ed6
commit
dcd78f43b8
|
@ -1,6 +1,4 @@
|
|||
libmatroska is a required library for the program mkvtoolnix
|
||||
which creates and manipulates .mkv files (matroska video) and
|
||||
.mka files (matroska audio).
|
||||
'Matroska' is an extensible open standard Audio/Video container.
|
||||
libmatroska is a C++ libary to parse Matroska files (.mkv and .mka).
|
||||
Matroska is an audio/video container based on EBML.
|
||||
|
||||
Requires libebml available at slackbuilds.org
|
||||
Requires libebml available at slackbuilds.org
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware 12 build script for libmatroska
|
||||
# Slackware build script for libmatroska
|
||||
|
||||
# Copyright 2008-2009 Andrew Strong (http://www.andrews-corner.org)
|
||||
# Copyright 2008,2009,2010. Andrew Strong (http://www.andrews-corner.org)
|
||||
# All rights reserved.
|
||||
#
|
||||
# Redistribution and use of this script, with or without modification, is
|
||||
|
@ -22,17 +22,15 @@
|
|||
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
PRGNAM=libmatroska
|
||||
VERSION=0.8.1
|
||||
PRGNAM=libmatroska
|
||||
VERSION=1.0.0
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
# Automatically determine the architecture we're building on:
|
||||
if [ -z "$ARCH" ]; then
|
||||
case "$( uname -m )" in
|
||||
i?86) ARCH=i486 ;;
|
||||
arm*) ARCH=arm ;;
|
||||
# Unless $ARCH is already set, use uname -m for all other archs:
|
||||
*) ARCH=$( uname -m ) ;;
|
||||
esac
|
||||
fi
|
||||
|
@ -72,11 +70,12 @@ find . \
|
|||
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
|
||||
-exec chmod 644 {} \;
|
||||
|
||||
|
||||
CFLAGS="$SLKCFLAGS" \
|
||||
CXXFLAGS="$SLKCFLAGS" \
|
||||
make prefix=/usr libdir=/usr/lib${LIBDIRSUFFIX} sharedlib -C make/linux
|
||||
make prefix=$PKG/usr libdir=$PKG/usr/lib${LIBDIRSUFFIX} install -C make/linux
|
||||
make -C make/linux sharedlib \
|
||||
prefix=/usr libdir=/usr/lib${LIBDIRSUFFIX}
|
||||
make -C make/linux install_sharedlib install_headers \
|
||||
prefix=$PKG/usr libdir=$PKG/usr/lib${LIBDIRSUFFIX}
|
||||
|
||||
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
|
||||
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
PRGNAM="libmatroska"
|
||||
VERSION="0.8.1"
|
||||
VERSION="1.0.0"
|
||||
HOMEPAGE="http://www.bunkus.org/videotools/mkvtoolnix/source.html"
|
||||
DOWNLOAD="http://dl.matroska.org/downloads/libmatroska/libmatroska-0.8.1.tar.bz2"
|
||||
MD5SUM="20cf624ace0c58a54c7752eebfbc0b19"
|
||||
DOWNLOAD="http://dl.matroska.org/downloads/libmatroska/libmatroska-1.0.0.tar.bz2"
|
||||
MD5SUM="4efcf3945b17a6f0320cf1aaa326a4de"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
MAINTAINER="Andrew Strong"
|
||||
EMAIL="andrew.david.45@gmail.com"
|
||||
APPROVED="dsomero,rworkman"
|
||||
EMAIL="andrew.david.52@gmail.com"
|
||||
APPROVED="Erik Hanson"
|
||||
|
|
|
@ -6,14 +6,14 @@
|
|||
# customary to leave one space after the ':'.
|
||||
|
||||
|-----handy-ruler---------------------------------------------------|
|
||||
libmatroska: libmatroska (an extensible open standard Audio/Video container)
|
||||
libmatroska: libmatroska (A C++ library to parse Matroska files)
|
||||
libmatroska:
|
||||
libmatroska: libmatroska is a C++ libary to parse Matroska files (.mkv and
|
||||
libmatroska: .mka).
|
||||
libmatroska:
|
||||
libmatroska:
|
||||
libmatroska:
|
||||
libmatroska:
|
||||
libmatroska: http://www.bunkus.org/videotools/mkvtoolnix/source.html
|
||||
libmatroska:
|
||||
libmatroska: libmatroska is a required library for the program mkvtoolnix
|
||||
libmatroska: which creates and manipulates .mkv files (matroska video) and
|
||||
libmatroska: .mka files (matroska audio).
|
||||
libmatroska: 'Matroska' is an extensible open standard Audio/Video container.
|
||||
libmatroska:
|
||||
libmatroska:
|
||||
libmatroska: http://www.bunkus.org/videotools/mkvtoolnix/source.html
|
||||
libmatroska:
|
||||
libmatroska:
|
Loading…
Reference in New Issue