diff options
author | root <root@rshg054.dnsready.net> | 2013-08-05 02:24:00 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-08-05 02:24:00 -0700 |
commit | b3923b26c3d37257246fea13bdb1151c96cb2fe4 (patch) | |
tree | 868c0a9f4649cfc0849318696f440a10bc412d9b /libre/pngcrush | |
parent | 639c9730319cc0ce33e34e2386f467f67d3cc458 (diff) |
Mon Aug 5 02:23:17 PDT 2013
Diffstat (limited to 'libre/pngcrush')
-rw-r--r-- | libre/pngcrush/PKGBUILD | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/libre/pngcrush/PKGBUILD b/libre/pngcrush/PKGBUILD new file mode 100644 index 000000000..f44ace016 --- /dev/null +++ b/libre/pngcrush/PKGBUILD @@ -0,0 +1,27 @@ +# Maintainer: Luke Shumaker <lukeshu@sbcglobal.net> + +pkgname=pngcrush +pkgver=1.7.65 +pkgrel=1 +pkgdesc="A tool for optimizing the compression of PNG files" +arch=('i686' 'x86_64' 'mips64el') +url="http://pmt.sourceforge.net/pngcrush/" +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=('b4130246c14c1cffc6c2014ff86f1008') |