blob: 2f47bc5b2d0539899f14e345f2ea74a23d117ac1 (
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
|
# $NetBSD: Makefile,v 1.3 1998/09/28 10:35:48 frueauf Exp $
#
DISTNAME= hexedit-1.0.0
WRKSRC= ${WRKDIR}/hexedit
CATEGORIES= editors
MASTER_SITES= http://www.chez.com/prigaux/
EXTRACT_SUFX= .src.tgz
MAINTAINER= packages@netbsd.org
HOMEPAGE= http://www.chez.com/prigaux/hexedit.html
DEPENDS+= ncurses-1.9.9g:../../devel/ncurses
CONFLICTS= hexedit-0.9.4 hexedit-0.9.5
GNU_CONFIGURE= yes
CONFIGURE_ENV+= LIBS="-L${PREFIX}/lib"
post-install:
${MKDIR} ${PREFIX}/share/doc/hexedit
.for file in COPYING Changes TODO
${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/share/doc/hexedit
.endfor
.include "../../mk/bsd.pkg.mk"
|