01fa670df5
Changes since 1.5: - Added -V (version) option - Added -exonly (exif only) option - Fixed lots of typos (Thanks, David Baker [mailto:dave@dsb3.com]) - Use EDITOR environment variable to pick which editor (Instead of notpead or VI) - Improved thumbnail deletion feature - now not just shortens the header, but also removes pointers to the thumbnail form the exif header.
24 lines
618 B
Makefile
24 lines
618 B
Makefile
# $NetBSD: Makefile,v 1.5 2002/02/10 22:47:47 veego Exp $
|
|
#
|
|
|
|
DISTNAME= jhead-1.6
|
|
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
|
|
|
|
WRKSRC= ${WRKDIR}/${DISTNAME:S/-//}
|
|
|
|
LIBS= -lm
|
|
|
|
do-build:
|
|
cd ${WRKSRC} && ${CC} ${CFLAGS} ${LIBS} -o jhead jhead.c exif.c
|
|
|
|
do-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/html/jhead
|
|
${INSTALL_PROGRAM} ${WRKSRC}/jhead ${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/usage.html ${PREFIX}/share/doc/html/jhead
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|