diff options
Diffstat (limited to 'audio/eyeD3/eyeD3.SlackBuild')
-rw-r--r-- | audio/eyeD3/eyeD3.SlackBuild | 35 |
1 files changed, 12 insertions, 23 deletions
diff --git a/audio/eyeD3/eyeD3.SlackBuild b/audio/eyeD3/eyeD3.SlackBuild index ef57243142..d4417a4f2d 100644 --- a/audio/eyeD3/eyeD3.SlackBuild +++ b/audio/eyeD3/eyeD3.SlackBuild @@ -1,8 +1,9 @@ #!/bin/sh -# Slackware build script for abiword +# Slackware build script for eyeD3 # Copyright 2007 Andrew Lindberg <alindberg@gmail.com> +# Copyright 2015 Andrew Strong, Blue Mountains Australia. # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -24,9 +25,10 @@ # Modified by the SlackBuilds.org project # No additional license terms added +# Modified by new maintainer: Andrew Strong PRGNAM=eyeD3 -VERSION=0.6.14 +VERSION=${VERSION:-0.7.5} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -49,36 +51,23 @@ rm -rf $PKG mkdir -p $TMP $PKG $OUTPUT cd $TMP rm -rf $PRGNAM-$VERSION -tar xvf $CWD/$PRGNAM-$VERSION.tar.gz +tar xvf $CWD/$PRGNAM-$VERSION.tgz 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 640 -o -perm 600 -o -perm 444 \ - -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; -# eyeD3 neatly wraps the setup.py script in an automake system -# --docdir is ignored by the build process, but we'll leave it here anyway -./configure \ - --prefix=/usr \ - --libdir=/usr/lib${LIBDIRSUFFIX} \ - --sysconfdir=/etc \ - --localstatedir=/var \ - --mandir=/usr/man \ - --docdir=/usr/doc/$PRGNAM-$VERSION +python setup.py install --root=$PKG -make -make DESTDIR=$PKG install +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 -# and the automake does everything neatly for docs and man pages, et al -# just need the slack-specific files -mv $PKG/usr/share/doc $PKG/usr -rmdir $PKG/usr/share -( cd $PKG/usr/doc/$PRGNAM-$VERSION - cat $CWD/$PRGNAM.SlackBuild > $PRGNAM.SlackBuild - gzip -d {COPYING.gz,ChangeLog.gz} -) +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a AUTHORS ChangeLog COPYING $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc |