1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-25 09:34:11 +00:00
freebsd-ports/sysutils/hextools/Makefile
Eitan Adler e1f907bc92 - change the email address I use to maintain ports
Approved by:	bapt (mentor)
2011-08-21 20:51:40 +00:00

34 lines
808 B
Makefile

# New ports collection makefile for: hextools
# Date created: 19 Oct 2010
# Whom: Eitan Adler
#
# $FreeBSD$
#
PORTNAME= hextools
PORTVERSION= 1.1
CATEGORIES= sysutils
MASTER_SITES= http://avl.enemy.org/utils/hextools/
MAINTAINER= eadler@FreeBSD.org
COMMENT= Useful tools for dealing with hex files
NO_WRKSUBDIR=yes
MAN1= bin2hex.1 hex2bin.1
PLIST_FILES= bin/hex2bin bin/bin2hex
ALL_TARGET= build
#not strictly true - it uses a self-styled license
#LICENSE= BSD
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/hex2bin ${PREFIX}/bin/hex2bin
${INSTALL_PROGRAM} ${WRKSRC}/hexdump ${PREFIX}/bin/bin2hex
.if !defined(NO_INSTALL_MANPAGES)
${INSTALL_MAN} ${WRKSRC}/hex2bin.1 ${MANPREFIX}/man/man1/hex2bin.1
${INSTALL_MAN} ${WRKSRC}/hexdump.1 ${MANPREFIX}/man/man1/bin2hex.1
.endif
.include <bsd.port.mk>