2010-05-11 20:56:25 +08:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# Slackware build script for python-levenshtein
|
|
|
|
|
|
|
|
# Copyright (c) 2007 Daniel de Kok <moc.mikciat@leinad>
|
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
# Redistribution and use of this script, with or without modification, is
|
|
|
|
# permitted provided that the following conditions are met:
|
|
|
|
#
|
|
|
|
# 1. Redistributions of this script must retain the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED
|
|
|
|
# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
|
|
# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
|
|
|
|
# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
|
|
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
|
|
|
|
# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
|
|
|
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
|
|
|
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
|
|
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
|
|
# Exit on most errors
|
|
|
|
set -e
|
|
|
|
|
|
|
|
PRGNAM=python-levenshtein
|
|
|
|
DISTNAM=python-Levenshtein
|
|
|
|
VERSION=0.10.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
|
|
|
|
mkdir -p $TMP $PKG $OUTPUT
|
|
|
|
cd $TMP
|
|
|
|
rm -rf $DISTNAM-$VERSION
|
|
|
|
tar xzvf $CWD/$DISTNAM-$VERSION.tar.gz
|
|
|
|
cd $DISTNAM-$VERSION
|
|
|
|
cp $CWD/genextdoc.py .
|
|
|
|
chown -R root:root .
|
|
|
|
chmod -R u+w,go+r-w,a-s .
|
|
|
|
|
|
|
|
CFLAGS="$SLKCFLAGS" \
|
|
|
|
python setup.py bdist
|
|
|
|
|
2010-05-12 01:45:26 +08:00
|
|
|
tar zxvf dist/$DISTNAM-$VERSION.linux-i686.tar.gz -C $PKG
|
2010-05-11 20:56:25 +08:00
|
|
|
|
2010-05-12 01:45:26 +08:00
|
|
|
( find $PKG | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : \
|
|
|
|
| xargs strip --strip-unneeded 2> /dev/null )
|
2010-05-11 20:56:25 +08:00
|
|
|
|
|
|
|
# Generate HTML documentation that describes the module functions.
|
|
|
|
# Maybe we'll want to replace the Python version number with a variable
|
|
|
|
# in the future, but for the moment this is for Slackware Linux 11.
|
2010-05-12 01:45:26 +08:00
|
|
|
PYTHONPATH=$PKG/usr/lib/python2.5/site-packages sh gendoc.sh --selfcontained
|
2010-05-11 20:56:25 +08:00
|
|
|
|
|
|
|
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
|
|
|
cp -a COPYING Levenshtein.html NEWS README $PKG/usr/doc/$PRGNAM-$VERSION
|
|
|
|
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
|
|
|
|
|
|
|
# Add the StringMatcher moduke as an example. You may choose to provide
|
|
|
|
# this system-wide.
|
|
|
|
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION/examples
|
|
|
|
cp StringMatcher.py $PKG/usr/doc/$PRGNAM-$VERSION/examples
|
|
|
|
|
|
|
|
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
|