blob: 4b046355c7c439a74e79c4bdfcaf13ce268b19b0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# $NetBSD: Makefile,v 1.18 2005/06/19 11:35:25 veego 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
PKGSRC_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"
|