597c7d504b
Fixed handling of "-text" and "-ztext" options for text input. They had been reduced to "-t" and "-z" with an incorrect argument (3 instead of 2) in version 1.7.62.
26 lines
731 B
Makefile
26 lines
731 B
Makefile
# $NetBSD: Makefile,v 1.76 2013/09/01 07:34:35 adam Exp $
|
|
|
|
DISTNAME= pngcrush-1.7.67-nolib
|
|
PKGNAME= ${DISTNAME:C/-nolib//}
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=pmt/}
|
|
EXTRACT_SUFX= .tar.xz
|
|
|
|
MAINTAINER= rh@NetBSD.org
|
|
HOMEPAGE= http://pmt.sourceforge.net/pngcrush/index.html
|
|
COMMENT= Optimizer for PNG (Portable Network Graphics) files
|
|
LICENSE= zlib
|
|
|
|
NO_CONFIGURE= yes
|
|
INSTALLATION_DIRS= bin
|
|
|
|
do-build:
|
|
cd ${WRKSRC} && ${CC} -DPNG_USE_LOCAL_ARRAYS \
|
|
${CFLAGS} `libpng-config --cflags` -o pngcrush pngcrush.c \
|
|
${LDFLAGS} `libpng-config --ldflags` -lz
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/pngcrush ${DESTDIR}${PREFIX}/bin
|
|
|
|
.include "../../graphics/png/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|