libraries/tagpy: Updated for version 0.94.5

This commit is contained in:
Frank Caraballo 2010-05-13 00:33:38 +02:00 committed by David Somero
parent a665e45406
commit 8f5116594e
3 changed files with 11 additions and 5 deletions

View File

@ -2,5 +2,4 @@ TagPy is a set of Python bindings for Scott Wheeler's TagLib. It
builds upon Boost.Python, a wrapper generation library which is builds upon Boost.Python, a wrapper generation library which is
part of the Boost set of C++ libraries. part of the Boost set of C++ libraries.
boost and pysetuptools (available at SBo) are required to build pysetuptools (available at SBo) is required to build TagPy.
TagPy.

View File

@ -35,10 +35,13 @@ OUTPUT=${OUTPUT:-/tmp}
if [ "$ARCH" = "i486" ]; then if [ "$ARCH" = "i486" ]; then
SLKCFLAGS="-O2 -march=i486 -mtune=i686" SLKCFLAGS="-O2 -march=i486 -mtune=i686"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686" SLKCFLAGS="-O2 -march=i686 -mtune=i686"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "x86_64" ]; then elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC" SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
fi fi
rm -rf $PKG rm -rf $PKG
@ -67,8 +70,10 @@ python setup.py build || exit 1
python setup.py install --root $PKG || exit 1 python setup.py install --root $PKG || exit 1
( cd $PKG ( cd $PKG
find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | \
find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null xargs strip --strip-unneeded 2> /dev/null
find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | \
xargs strip --strip-unneeded 2> /dev/null
) )
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
@ -80,4 +85,4 @@ mkdir -p $PKG/install
cat $CWD/slack-desc > $PKG/install/slack-desc cat $CWD/slack-desc > $PKG/install/slack-desc
cd $PKG cd $PKG
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz /sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}

View File

@ -2,7 +2,9 @@ PRGNAM="tagpy"
VERSION="0.94.5" VERSION="0.94.5"
HOMEPAGE="http://mathema.tician.de/software/tagpy" HOMEPAGE="http://mathema.tician.de/software/tagpy"
DOWNLOAD="http://pypi.python.org/packages/source/t/tagpy/tagpy-0.94.5.tar.gz" DOWNLOAD="http://pypi.python.org/packages/source/t/tagpy/tagpy-0.94.5.tar.gz"
DOWNLOAD_x86_64=""
MD5SUM="84d7862786ad7bab91d0d45ded15a875" MD5SUM="84d7862786ad7bab91d0d45ded15a875"
MD5SUM_x86_64=""
MAINTAINER="Frank Caraballo" MAINTAINER="Frank Caraballo"
EMAIL="fecaraballo{at}gmail{dot}com" EMAIL="fecaraballo{at}gmail{dot}com"
APPROVED="dsomero" APPROVED="dsomero"