37a68cf8ac
changes: added -cl (insert comment literal) option Added -norot (zero out rotation tag) option Added handling of explicit 35mm equivalent tag Added ability to do sequencial renaming and fixes
29 lines
804 B
Makefile
29 lines
804 B
Makefile
# $NetBSD: Makefile,v 1.15 2005/02/02 21:31:24 drochner Exp $
|
|
#
|
|
|
|
DISTNAME= jhead-2.3
|
|
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_BUILDLINK3= yes
|
|
|
|
INSTALLATION_DIRS= bin man/man1 share/doc/html/jhead
|
|
|
|
do-build:
|
|
cd ${WRKSRC} && ${CC} ${CFLAGS} -o jhead \
|
|
jhead.c exif.c jpgfile.c makernote.c -lm
|
|
${GZIP_CMD} -d ${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"
|