23 lines
630 B
Bash
23 lines
630 B
Bash
# Template file for 'pngcrush'
|
|
pkgname=pngcrush
|
|
version=1.8.2
|
|
revision=1
|
|
wrksrc=${pkgname}-${version}-nolib
|
|
makedepends="libpng-devel"
|
|
short_desc="Tool for optimizing the compression of PNG files"
|
|
maintainer="Duncaen <duncaen@voidlinux.eu>"
|
|
license="zlib"
|
|
homepage="http://pmt.sourceforge.net/pngcrush"
|
|
distfiles="${SOURCEFORGE_SITE}/pmt/${pkgname}-${version}-nolib.tar.xz"
|
|
checksum=4a2b4a0445008f0d528cffebd143ca9b15ec41cbc5abb79ce244d6eedaf452b1
|
|
|
|
do_build() {
|
|
make CC="$CC" LD="$CC" CFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS"
|
|
}
|
|
|
|
do_install() {
|
|
sed -n 10,160p pngcrush.c > LICENSE
|
|
vlicense LICENSE
|
|
make DESTDIR="$DESTDIR" install
|
|
}
|