libraries/libmp4v2: Initial import
This commit is contained in:
parent
e41cadb49a
commit
aa4dbf1b71
|
@ -0,0 +1,9 @@
|
|||
libmp4v2 SlackBuild Script
|
||||
|
||||
This library provides functions to read, create, and modify mp4
|
||||
files. This is a standalone version of mp4v2 library. It is
|
||||
derived from the mpeg4ip source tree, but for licensing reasons
|
||||
it has been adapted to this form.
|
||||
|
||||
For more information: http://resare.com/libmp4v2/
|
||||
|
|
@ -0,0 +1,61 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for libmp4v2
|
||||
# Written by Alex Lysenka <me@alkos333.net>
|
||||
# Licensed under GNU GPL v2
|
||||
|
||||
# Modified by the SlackBuilds.org Project
|
||||
|
||||
PRGNAM=libmp4v2
|
||||
VERSION=1.5.0.1
|
||||
ARCH=${ARCH:-i486}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
|
||||
if [ "$ARCH" = "i486" ]; then
|
||||
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
||||
elif [ "$ARCH" = "i686" ]; then
|
||||
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||||
fi
|
||||
|
||||
rm -rf $PKG
|
||||
rm -rf $TMP/$PRGNAM-$VERSION
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
tar -jxvf $CWD/$PRGNAM-$VERSION.tar.bz2 || exit 1
|
||||
cd $PRGNAM-$VERSION || exit 1
|
||||
chown -R root:root .
|
||||
chmod -R u+w,go+r-w,a+s .
|
||||
|
||||
CFLAGS="$SLKCFLAGS" \
|
||||
./configure \
|
||||
--prefix=/usr \
|
||||
--sysconfdir=/etc \
|
||||
--localstatedir=/var
|
||||
|
||||
make || exit 1
|
||||
make install DESTDIR=$PKG || exit 1
|
||||
|
||||
( cd
|
||||
find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
|
||||
find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
|
||||
)
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp API_CHANGES AUTHORS COPYING ChangeLog INSTALL INTERNALS NEWS README TODO $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
find $PKG/usr/doc/$PRGNAM-$VERSION -type f -exec chmod 644 {} \;
|
||||
|
||||
cd $PKG/usr/man
|
||||
find . -type f -exec gzip -9 {} \;
|
||||
|
||||
mkdir -p $PKG/install
|
||||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz || exit 1
|
|
@ -0,0 +1,8 @@
|
|||
PRGNAM="libmp4v2"
|
||||
VERSION="1.5.0.1"
|
||||
HOMEPAGE="http://resare.com/libmp4v2/"
|
||||
DOWNLOAD="http://resare.com/libmp4v2/dist/libmp4v2-1.5.0.1.tar.bz2"
|
||||
MD5SUM="90eb2b0940ebe02ef81b7a60530beaee"
|
||||
MAINTAINER="Alex Lysenka"
|
||||
EMAIL="me@alkos333.net"
|
||||
APPROVED="BP{k}"
|
|
@ -0,0 +1,12 @@
|
|||
|-----handy-ruler------------------------------------------------------|
|
||||
libmp4v2:
|
||||
libmp4v2: This library provides functions to read, create, and modify mp4
|
||||
libmp4v2: files. This is a standalone version of mp4v2 library. It is
|
||||
libmp4v2: derived from the mpeg4ip source tree, but for licensing reasons
|
||||
libmp4v2: it has been adapted to this form.
|
||||
libmp4v2:
|
||||
libmp4v2:
|
||||
libmp4v2:
|
||||
libmp4v2:
|
||||
libmp4v2: Homepage: http://resare.com/libmp4v2/
|
||||
libmp4v2:
|
Loading…
Reference in New Issue