diff options
author | root <root@rshg054.dnsready.net> | 2013-04-27 00:07:38 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-04-27 00:07:38 -0700 |
commit | a27a6af53095da314eca1d33911f72775dfc2bce (patch) | |
tree | f500052f401a6cb073a7080fe3bc3574e69ed7eb /pcr/pngcrush | |
parent | a247f0004e94d32b5fe69a5123e1c6684d8cf096 (diff) |
Sat Apr 27 00:07:38 PDT 2013
Diffstat (limited to 'pcr/pngcrush')
-rw-r--r-- | pcr/pngcrush/PKGBUILD | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/pcr/pngcrush/PKGBUILD b/pcr/pngcrush/PKGBUILD new file mode 100644 index 000000000..a4ac8b5cb --- /dev/null +++ b/pcr/pngcrush/PKGBUILD @@ -0,0 +1,26 @@ +# Maintainer: Luke Shumaker <lukeshu@sbcglobal.net> + +pkgname=pngcrush +pkgver=1.7.58 +pkgrel=1 +pkgdesc="A tool for optimizing the compression of PNG files" +arch=('i686' 'x86_64' 'mips64el') +url="http://pmt.sourceforge.net/" +license=('custom') +depends=('libpng' 'zlib') +source=(http://downloads.sourceforge.net/pmt/$pkgname-$pkgver-nolib.tar.xz) + +build() { + cd "$srcdir"/$pkgname-$pkgver-nolib + sed -n '10,17s/^\s*//p' cexcept.h > LICENSE.cexcept.txt + sed -rn '97,142s/ \* ?//p' pngcrush.c > LICENSE.pngcrush.txt + make +} + +package() { + cd "$srcdir"/$pkgname-$pkgver-nolib + install -Dm755 $pkgname "$pkgdir"/usr/bin/$pkgname + install -Dm644 LICENSE.cexcept.txt "$pkgdir"/usr/share/licenses/$pkgname/cexcept.txt + install -Dm644 LICENSE.pngcrush.txt "$pkgdir"/usr/share/licenses/$pkgname/pngcrush.txt +} +md5sums=('aa09aa8a65999ba522e5735ed0ad6a1a') |