libraries/libkate: Build bump, script cleanup.

This commit is contained in:
Nishant Limbachia 2010-04-24 04:12:25 -05:00 committed by Erik Hanson
parent cb0dcd3f44
commit 7e79db1237
1 changed files with 9 additions and 15 deletions

View File

@ -3,13 +3,13 @@
# Slackware Package Build Script for libkate # Slackware Package Build Script for libkate
# Home Page http://code.google.com/p/libkate/ # Home Page http://code.google.com/p/libkate/
# Copyright (c) 2008-2009, Nishant Limbachia, Hoffman Estates, IL, USA [nishant@mnspace.net] # Copyright (c) 2008-2010, Nishant Limbachia, Hoffman Estates, IL, USA (nishant _AT_ mnspace _DOT_ net)
# All rights reserved. # All rights reserved.
# #
# Redistribution and use of this script, with or without modification, is # Redistribution and use of this script, with or without modification, is
# permitted provided that the following conditions are met: # permitted provided that the following conditions are met:
# #
# 1. Redistributions of script must retain the above copyright notice, # 1. Redistributions of script must retain the above copyright notice,
# this list of conditions and the following disclaimer. # this list of conditions and the following disclaimer.
# #
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
@ -27,7 +27,7 @@
PRGNAM=libkate PRGNAM=libkate
VERSION=0.3.7 VERSION=0.3.7
ARCH=${ARCH:-i486} ARCH=${ARCH:-i486}
BUILD=${BUILD:-1} BUILD=${BUILD:-2}
TAG=${TAG:-_SBo} TAG=${TAG:-_SBo}
CWD=$(pwd) CWD=$(pwd)
@ -81,20 +81,14 @@ cp -a AUTHORS COPYING ChangeLog INSTALL README THANKS \
mv $PKG/usr/share/doc/$PRGNAM/html $PKG/usr/doc/$PRGNAM-$VERSION mv $PKG/usr/share/doc/$PRGNAM/html $PKG/usr/doc/$PRGNAM-$VERSION
rm -fr $PKG/usr/share rm -fr $PKG/usr/share
( cd $PKG ### strip binaries
find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
)
( cd $PKG/usr/man || exit 1 ( cd $PKG/usr/man
find . -type f -exec gzip -9 {} \; find . -type f -exec gzip -9 {} \;
for i in $(find . -type l) ; do ln -s $(readlink $i).gz $i.gz ; rm $i ; done for i in $(find . -type l) ; do ln -s $(readlink $i).gz $i.gz ; rm $i ; done
) )
if [ -d $PKG/usr/info ]; then
gzip -9 $PKG/usr/info/*.info
rm -f $PKG/usr/info/dir
fi
mkdir -p $PKG/install mkdir -p $PKG/install
cat $CWD/slack-desc > $PKG/install/slack-desc cat $CWD/slack-desc > $PKG/install/slack-desc