mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-04 20:29:09 +01:00
libraries/libebml: Updated for version 1.3.1.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
0832117d23
commit
af52d11314
2 changed files with 21 additions and 17 deletions
|
@ -25,7 +25,7 @@
|
|||
# Maintained by Ozan Türkyılmaz ozan.turkyilmaz@gmail.com
|
||||
|
||||
PRGNAM=libebml
|
||||
VERSION=${VERSION:-1.2.2}
|
||||
VERSION=${VERSION:-1.3.1}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
|
@ -59,10 +59,6 @@ else
|
|||
fi
|
||||
|
||||
set -e
|
||||
if [ "$STATICLIB" = "yes" ]; then
|
||||
MAKESTATICLIB="staticlib"
|
||||
MAKESTATICLIBINSTALL="install_staticlib"
|
||||
fi
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
|
@ -72,19 +68,27 @@ tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2
|
|||
cd $PRGNAM-$VERSION
|
||||
chown -R root:root .
|
||||
find -L . \
|
||||
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 -o -perm 511 \) \
|
||||
-exec chmod 755 {} \; -o \
|
||||
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
|
||||
-exec chmod 644 {} \;
|
||||
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
|
||||
-o -perm 511 \) -exec chmod 755 {} \; -o \
|
||||
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
|
||||
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
|
||||
|
||||
CFLAGS="$SLKCFLAGS" \
|
||||
CXXFLAGS="$SLKCFLAGS" \
|
||||
make -C make/linux sharedlib $MAKESTATICLIB \
|
||||
prefix=/usr libdir=/usr/lib${LIBDIRSUFFIX}
|
||||
make -C make/linux install_sharedlib $MAKESTATICLIBINSTALL install_headers \
|
||||
prefix=$PKG/usr libdir=$PKG/usr/lib${LIBDIRSUFFIX}
|
||||
./configure \
|
||||
--prefix=/usr \
|
||||
--libdir=/usr/lib${LIBDIRSUFFIX} \
|
||||
--sysconfdir=/etc \
|
||||
--localstatedir=/var \
|
||||
--mandir=/usr/man \
|
||||
--docdir=/usr/doc/$PRGNAM-$VERSION \
|
||||
--build=$ARCH-slackware-linux \
|
||||
--enable-static=${STATICLIB}
|
||||
|
||||
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
|
||||
make
|
||||
make install DESTDIR=$PKG
|
||||
|
||||
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
|
||||
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
PRGNAM="libebml"
|
||||
VERSION="1.2.2"
|
||||
VERSION="1.3.1"
|
||||
HOMEPAGE="http://www.bunkus.org/videotools/mkvtoolnix/source.html"
|
||||
DOWNLOAD="http://dl.matroska.org/downloads/libebml/libebml-1.2.2.tar.bz2"
|
||||
MD5SUM="726cc2bd1a525929ff35ff9854c0ebab"
|
||||
DOWNLOAD="http://dl.matroska.org/downloads/libebml/libebml-1.3.1.tar.bz2"
|
||||
MD5SUM="2d5a0e502fabedfded2a890c6b5513a5"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES=""
|
||||
|
|
Loading…
Reference in a new issue