bf9129c41e
PKGSRC_USE_TOOLS go away. There is now only a single USE_TOOLS variable that specifies all of the tools we need to build/run the package.
28 lines
733 B
Makefile
28 lines
733 B
Makefile
# $NetBSD: Makefile,v 1.19 2005/07/15 18:27:51 jlam Exp $
|
|
#
|
|
|
|
DISTNAME= jhead-2.4
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= http://www.sentex.net/~mwandel/jhead/
|
|
|
|
MAINTAINER= veego@NetBSD.org
|
|
HOMEPAGE= http://www.sentex.net/~mwandel/jhead/
|
|
COMMENT= Extract EXIF header from JPEG image
|
|
|
|
PKG_INSTALLATION_TYPES= overwrite pkgviews
|
|
|
|
USE_TOOLS+= gunzip
|
|
MAKEFILE= makefile
|
|
|
|
INSTALLATION_DIRS= bin man/man1 share/doc/html/jhead
|
|
|
|
post-extract:
|
|
${GUNZIP_CMD} ${WRKSRC}/jhead.1.gz
|
|
|
|
do-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/html/jhead
|
|
${INSTALL_PROGRAM} ${WRKSRC}/jhead ${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/jhead.1 ${PREFIX}/man/man1
|
|
${INSTALL_MAN} ${WRKSRC}/usage.html ${PREFIX}/share/doc/html/jhead
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|