diff options
author | Frank Caraballo <fecaraballo{at}gmail{dot}com> | 2010-05-11 19:45:45 +0200 |
---|---|---|
committer | Eric Hameleers <alien@slackbuilds.org> | 2010-05-11 19:45:45 +0200 |
commit | bdbc123734571ed93be969564cabcdb4ce91b3d5 (patch) | |
tree | ea63ff9ade516288b0b1effb4fb414bf863ddd42 /multimedia/xvidcore/xvidcore.SlackBuild | |
parent | 61d98bf983e0297b3bbaefc5e5dd1849e7b84394 (diff) | |
download | slackbuilds-bdbc123734571ed93be969564cabcdb4ce91b3d5.tar.gz |
multimedia/xvidcore: Updated for version 1.1.3
Diffstat (limited to 'multimedia/xvidcore/xvidcore.SlackBuild')
-rw-r--r-- | multimedia/xvidcore/xvidcore.SlackBuild | 29 |
1 files changed, 11 insertions, 18 deletions
diff --git a/multimedia/xvidcore/xvidcore.SlackBuild b/multimedia/xvidcore/xvidcore.SlackBuild index e00174b12e..38e702bb1e 100644 --- a/multimedia/xvidcore/xvidcore.SlackBuild +++ b/multimedia/xvidcore/xvidcore.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for Xvid -# Copyright 2007 MagicMan <MagicMan07@bluebottle.com> +# Copyright 2007 Frank Caraballo <fecaraballo{at}gmail{dot}com> # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -22,24 +22,17 @@ # OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -# Modified by the SlackBuilds.org project - -if [ "$(id -u)" != "0" ]; then - echo "This script must be run as root!" - exit 1 -fi - PRGNAM=xvidcore -VERSION=1.1.2 +VERSION=1.1.3 ARCH=${ARCH:-i486} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} -CWD=`pwd` +CWD=$(pwd) TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} -PDOCS="AUTHORS ChangeLog ChangeLog-1.0 CodingStyle LICENSE README TODO doc" +PDOCS="AUTHORS ChangeLog* CodingStyle LICENSE README TODO doc" if [ "$ARCH" = "i486" ]; then SLKCFLAGS="-O2 -march=i486 -mtune=i686" @@ -53,7 +46,6 @@ cd $TMP || exit 1 rm -rf $PRGNAM-$VERSION tar -xvf $CWD/$PRGNAM-$VERSION.tar.* || exit 1 cd $PRGNAM-$VERSION || exit 1 - chown -R root:root . chmod -R u+w,go+r-w,a-s . @@ -63,23 +55,24 @@ CFLAGS="$SLKCFLAGS" \ --prefix=/usr \ --sysconfdir=/etc \ --localstatedir=/var \ - --disable-static \ || exit 1 make || exit 1 make install DESTDIR=$PKG || exit 1 -find $PKG | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null -find $PKG | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null +( cd $PKG + find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | 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 +) cd $TMP/$PRGNAM-$VERSION mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a $PDOCS $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild -# Per doc/INSTALL, let's create some symlinks to the shared object -# This should be safe, as the maintainers assure that they won't change the -# major library number unless there is an incompatible ABI change +# Per doc/INSTALL, create some symlinks to the shared object. This +# should be safe, as the maintainers assure that they won't change the +# major library number unless there is an incompatible ABI change: ( cd $PKG/usr/lib ln -s libxvidcore.so.4.1 libxvidcore.so.4 ln -s libxvidcore.so.4.1 libxvidcore.so |