From ba76866f3416f4d4a0e4c37a1713b32649d46053 Mon Sep 17 00:00:00 2001 From: Leo Midha Date: Fri, 15 Jul 2011 22:29:55 -0300 Subject: graphics/pngcrush: Added (optimizer for PNG) Signed-off-by: Niels Horn --- graphics/pngcrush/README | 6 +++ graphics/pngcrush/pngcrush.SlackBuild | 73 +++++++++++++++++++++++++++++++++++ graphics/pngcrush/pngcrush.info | 10 +++++ graphics/pngcrush/slack-desc | 19 +++++++++ 4 files changed, 108 insertions(+) create mode 100644 graphics/pngcrush/README create mode 100644 graphics/pngcrush/pngcrush.SlackBuild create mode 100644 graphics/pngcrush/pngcrush.info create mode 100644 graphics/pngcrush/slack-desc (limited to 'graphics') diff --git a/graphics/pngcrush/README b/graphics/pngcrush/README new file mode 100644 index 0000000000..a1161f9e3b --- /dev/null +++ b/graphics/pngcrush/README @@ -0,0 +1,6 @@ +Pngcrush is an optimizer for PNG (Portable Network Graphics) files. +It can be run from a commandline in an MSDOS window, or from a UNIX or +LINUX commandline. Its main purpose is to reduce the size of the PNG IDAT +datastream by trying various compression levels and PNG filter methods. +It also can be used to remove unwanted ancillary chunks, or to add +certain chunks including gAMA, tRNS, iCCP, and textual chunks. diff --git a/graphics/pngcrush/pngcrush.SlackBuild b/graphics/pngcrush/pngcrush.SlackBuild new file mode 100644 index 0000000000..559b236857 --- /dev/null +++ b/graphics/pngcrush/pngcrush.SlackBuild @@ -0,0 +1,73 @@ +#!/bin/sh + +# Slackware build script for pngcrush + +# Written by (Leo Midha) (netrixtardis@stealth3.com) + +PRGNAM=pngcrush +VERSION=${VERSION:-1.7.15} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i486 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +if [ "$ARCH" = "i486" ]; then + SLKCFLAGS="-O2 -march=i486 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" + LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" +fi + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION.tar.xz +cd $PRGNAM-$VERSION +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 {} \; + +# Use our CFLAGS +sed -i "/^CFLAGS/s/=/+=/" Makefile + +CFLAGS="$SLKCFLAGS" \ + make +install -D -m0755 pngcrush $PKG/usr/bin/pngcrush + +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 + +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} diff --git a/graphics/pngcrush/pngcrush.info b/graphics/pngcrush/pngcrush.info new file mode 100644 index 0000000000..44ff6552a8 --- /dev/null +++ b/graphics/pngcrush/pngcrush.info @@ -0,0 +1,10 @@ +PRGNAM="pngcrush" +VERSION="1.7.15" +HOMEPAGE="http://pmt.sourceforge.net/pngcrush/" +DOWNLOAD="http://downloads.sourceforge.net/pmt/pngcrush-1.7.15.tar.xz" +MD5SUM="c21cf76d187dadd4c137e894dcb593bf" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +MAINTAINER="Leo Midha" +EMAIL="netrixtardis@stealth3.com" +APPROVED="Niels Horn" diff --git a/graphics/pngcrush/slack-desc b/graphics/pngcrush/slack-desc new file mode 100644 index 0000000000..111dabb641 --- /dev/null +++ b/graphics/pngcrush/slack-desc @@ -0,0 +1,19 @@ +# HOW TO EDIT THIS FILE: +# The "handy ruler" below makes it easier to edit a package description. Line +# up the first '|' above the ':' following the base package name, and the '|' +# on the right side marks the last column you can put a character in. You must +# make exactly 11 lines for the formatting to be correct. It's also +# customary to leave one space after the ':'. + + |-----handy-ruler------------------------------------------------------| +pngcrush: pngcrush (optimizer for PNG) +pngcrush: +pngcrush: Its main purpose is to reduce the size of the PNG IDAT datastream +pngcrush: by trying various compression levels and PNG filter methods. +pngcrush: It also can be used to remove unwanted ancillary chunks, or to add +pngcrush: certain chunks including gAMA, tRNS, iCCP, and textual chunks. +pngcrush: +pngcrush: +pngcrush: +pngcrush: +pngcrush: -- cgit v1.2.3