- Add LICENSE (GPLv2) [1] - Fix MASTER_SITES [2] - Update WWW to new site - Unmute install commands PR: ports/178462 [1] Submitted by: Oleg Ginzburg <olevole@olevole.ru> [1] PR: ports/175447 [2] Submitted by: Sean DuBois <sean@siobud.com> [2] Approved by: culot / jpaetzel (mentors, implicit), maintainer (timeout)
26 lines
526 B
Makefile
26 lines
526 B
Makefile
# Created by: Andrey Zakhvatov
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= hexedit
|
|
PORTVERSION= 1.2.13
|
|
CATEGORIES= editors
|
|
MASTER_SITES= http://rigaux.org/
|
|
DISTFILES= ${DISTNAME}.src.tgz
|
|
|
|
MAINTAINER= obrien@FreeBSD.org
|
|
COMMENT= View and edit files in hexadecimal or ASCII
|
|
|
|
LICENSE= GPLv2
|
|
|
|
WRKSRC= ${WRKDIR}/${DISTNAME:S/-${PORTVERSION}//}
|
|
|
|
GNU_CONFIGURE= yes
|
|
MAN1= hexedit.1
|
|
|
|
PLIST_FILES= bin/hexedit
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/hexedit ${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/hexedit.1 ${PREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|