summaryrefslogtreecommitdiffstats
path: root/graphics/pngcrush/pngcrush.SlackBuild
diff options
context:
space:
mode:
author dsomero <xgizzmo@gmail.com>2010-05-21 18:22:22 -0400
committer David Somero <xgizzmo@slackbuilds.org>2010-05-24 16:06:52 -0500
commit7eb4a84a828112014ea5af0bfb21326893564c5e (patch)
treec8bb9e91c42d10280d9fc8f6415ff9c33341f27c /graphics/pngcrush/pngcrush.SlackBuild
parent5b368aab47e8eb11d31ce23d83f56f0e7ed5662f (diff)
downloadslackbuilds-7eb4a84a828112014ea5af0bfb21326893564c5e.tar.gz
slackbuilds-7eb4a84a828112014ea5af0bfb21326893564c5e.tar.xz
graphics/pngcrush: Removed (Build failure)
Diffstat (limited to 'graphics/pngcrush/pngcrush.SlackBuild')
-rw-r--r--graphics/pngcrush/pngcrush.SlackBuild60
1 files changed, 0 insertions, 60 deletions
diff --git a/graphics/pngcrush/pngcrush.SlackBuild b/graphics/pngcrush/pngcrush.SlackBuild
deleted file mode 100644
index 728c662a67..0000000000
--- a/graphics/pngcrush/pngcrush.SlackBuild
+++ /dev/null
@@ -1,60 +0,0 @@
-#!/bin/sh
-#
-# Slackware build script for pngcrush
-#
-# Written by Beej Jorgensen <beej@beej.us>
-
-PRGNAM=pngcrush
-VERSION=${VERSION:-1.6.19}
-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" = "i586" ]; then
- SLKCFLAGS="-O2 -march=i586 -mtune=i686"
-elif [ "$ARCH" = "i686" ]; then
- SLKCFLAGS="-O2 -march=i686 -mtune=i686"
-elif [ "$ARCH" = "x86_64" ]; then
- SLKCFLAGS="-O2 -fPIC"
-fi
-
-set -e
-
-rm -rf $PKG
-mkdir -p $TMP $PKG $OUTPUT
-cd $TMP
-rm -rf $PRGNAM-$VERSION
-tar xvf $CWD/$PRGNAM-$VERSION-nolib.tar.bz2
-cd $PRGNAM-$VERSION-nolib
-chown -R root:root .
-find . \
- \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
- -exec chmod 755 {} \; -o \
- \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
- -exec chmod 644 {} \;
-
-# there is no Makefile
-cc $SLKCFLAGS -Wall -o $PRGNAM $PRGNAM.c -lpng
-
-mkdir -p $PKG/usr/bin
-cp -a $PRGNAM $PKG/usr/bin
-
-find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
- | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a ChangeLog.html $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
-
-cd $PKG
-/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}