summaryrefslogtreecommitdiffstats
path: root/libraries/libebml/libebml.SlackBuild
diff options
context:
space:
mode:
author Ozan Türkyılmaz2015-06-09 23:35:30 +0200
committer Willy Sudiarto Raharjo2015-06-09 23:39:59 +0200
commitaf52d11314b4e7cbaec9ed579df5e578547ee9c0 (patch)
tree8cf0720a8ce9d40772879d3c238ab9be40e6cdbf /libraries/libebml/libebml.SlackBuild
parent0832117d23ff7335c7469fe960ba5f2cdc2a1588 (diff)
downloadslackbuilds-af52d11314b4e7cbaec9ed579df5e578547ee9c0.tar.gz
libraries/libebml: Updated for version 1.3.1.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'libraries/libebml/libebml.SlackBuild')
-rw-r--r--libraries/libebml/libebml.SlackBuild32
1 files changed, 18 insertions, 14 deletions
diff --git a/libraries/libebml/libebml.SlackBuild b/libraries/libebml/libebml.SlackBuild
index 8d86331091..e00cddabe9 100644
--- a/libraries/libebml/libebml.SlackBuild
+++ b/libraries/libebml/libebml.SlackBuild
@@ -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}
+
+make
+make install DESTDIR=$PKG
-find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
+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