libraries/libfm: Splitted libfm-extra.

Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
This commit is contained in:
Matteo Bernardini 2014-12-13 17:02:29 +01:00 committed by Willy Sudiarto Raharjo
parent 505ce0c4cc
commit 959d32ff58
1 changed files with 8 additions and 2 deletions

View File

@ -25,7 +25,7 @@
PRGNAM=libfm
VERSION=${VERSION:-1.2.3}
BUILD=${BUILD:-1}
BUILD=${BUILD:-2}
TAG=${TAG:-_SBo}
if [ -z "$ARCH" ]; then
@ -97,9 +97,15 @@ CXXFLAGS="$SLKCFLAGS" \
make
make install-strip DESTDIR=$PKG
# Fix include folders
# Fix the include folder
( cd $PKG/usr/include ; rm -fr libfm ; ln -s libfm-1.0 libfm )
# Remove libfm-extra files (as they're in a separate package)
( cd $PKG/usr/include/libfm
rm -f fm-xml-file.h fm-extra.h fm-version.h
cd $PKG/usr/lib$LIBDIRSUFFIX
rm -f libfm-extra.so* pkgconfig/libfm-extra.pc libfm-extra.la )
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