diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2014-02-02 03:26:07 -0500 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2014-02-02 16:24:13 -0500 |
commit | 5412cb613c58e3eb3470bdba67a23855bf3a7191 (patch) | |
tree | a2479d5a1edd94831fa4a6bea884bf351e99bbb5 /libre/pngcrush | |
parent | 9ba2ac0cd2a6f3e6af1a0f01f50f29a8009e9145 (diff) | |
download | abslibre-5412cb613c58e3eb3470bdba67a23855bf3a7191.tar.gz abslibre-5412cb613c58e3eb3470bdba67a23855bf3a7191.tar.bz2 abslibre-5412cb613c58e3eb3470bdba67a23855bf3a7191.zip |
undelete libre/{distcc-nozeroconf,pngcrush,ruby-hpricot}
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') |