summaryrefslogtreecommitdiff
path: root/~lukeshu
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2013-04-27 01:29:31 -0400
committerLuke Shumaker <LukeShu@sbcglobal.net>2013-04-27 01:29:31 -0400
commit33b976d7c256075391619a8269a2bb20885c8e77 (patch)
treed5c2ba4c9f238ab95b37c95350f3e91f00d01f3a /~lukeshu
parentc3f6423889d3531d5daf6bc49effb7975e96a808 (diff)
mv ~lukeshu/pngcrush pcr/pngcrush; update it.
Diffstat (limited to '~lukeshu')
-rw-r--r--~lukeshu/pngcrush/LICENSE42
-rw-r--r--~lukeshu/pngcrush/PKGBUILD30
2 files changed, 0 insertions, 72 deletions
diff --git a/~lukeshu/pngcrush/LICENSE b/~lukeshu/pngcrush/LICENSE
deleted file mode 100644
index 3412dd04e..000000000
--- a/~lukeshu/pngcrush/LICENSE
+++ /dev/null
@@ -1,42 +0,0 @@
-
-NOTICES
-
-If you have modified this source, you may insert additional notices
-immediately after this sentence.
-
-COPYRIGHT:
-
-Copyright (C) 1998-2002,2006-2009 Glenn Randers-Pehrson
- (glennrp at users.sf.net)
-Copyright (C) 2005 Greg Roelofs
-
-DISCLAIMERS:
-
-The pngcrush computer program is supplied "AS IS". The Author disclaims all
-warranties, expressed or implied, including, without limitation, the
-warranties of merchantability and of fitness for any purpose. The
-Author assumes no liability for direct, indirect, incidental, special,
-exemplary, or consequential damages, which may result from the use of
-the computer program, even if advised of the possibility of such damage.
-There is no warranty against interference with your enjoyment of the
-computer program or against infringement. There is no warranty that my
-efforts or the computer program will fulfill any of your particular purposes
-or needs. This computer program is provided with all faults, and the entire
-risk of satisfactory quality, performance, accuracy, and effort is with
-the user.
-
-LICENSE:
-
-Permission is hereby irrevocably granted to everyone to use, copy, modify,
-and distribute this source code, or portions hereof, or executable programs
-compiled from it, for any purpose, without payment of any fee, subject to
-the following restrictions:
-
-1. The origin of this source code must not be misrepresented.
-
-2. Altered versions must be plainly marked as such and must not be
- misrepresented as being the original source.
-
-3. This Copyright notice, disclaimer, and license may not be removed
- or altered from any source or altered source distribution.
-
diff --git a/~lukeshu/pngcrush/PKGBUILD b/~lukeshu/pngcrush/PKGBUILD
deleted file mode 100644
index e3b477086..000000000
--- a/~lukeshu/pngcrush/PKGBUILD
+++ /dev/null
@@ -1,30 +0,0 @@
-# Contributor: Anton Bazhenov <anton.bazhenov at gmail>
-# Contributer: HuntXu <huntxu@live.cn>
-# Maintainer: Stefan Husmann <stefan-husmann@t-online.de>
-
-pkgname=pngcrush
-pkgver=1.7.15
-pkgrel=1
-pkgdesc="A tool for optimizing the compression of PNG files"
-arch=('i686' 'x86_64')
-url="http://pmt.sourceforge.net/"
-license=('custom')
-depends=('glibc')
-source=(http://downloads.sourceforge.net/pmt/$pkgname-$pkgver.tar.xz
- LICENSE)
-md5sums=('c21cf76d187dadd4c137e894dcb593bf'
- 'e6446a786d939c98fcada57f9ae6de1f')
-
-build() {
- cd "$srcdir"/$pkgname-$pkgver
- # fix for better compression
- sed -i 's|TOO_FAR 4096|TOO_FAR 32767|' deflate.c
- make
-}
-
-package() {
- install -Dm755 "$srcdir"/$pkgname-$pkgver/$pkgname \
- "$pkgdir"/usr/bin/$pkgname
- install -Dm644 $srcdir/LICENSE \
- "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}