blob: 2fb8d7546e5742e1045a615a33ac753d76abe51d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# $NetBSD: Makefile,v 1.3 2020/05/20 06:09:03 rillig Exp $
DISTNAME= em-1.0.0
CATEGORIES= editors
MASTER_SITES= http://pgas.freeshell.org/C/em/
MAINTAINER= agc@NetBSD.org
HOMEPAGE= https://www.coulouris.net/cs_history/em_story/
COMMENT= Early V6 Unix line-based editor for mortals
LICENSE= public-domain
GNU_CONFIGURE= yes
AUTO_MKDIRS= yes
# em1.c: In function 'advance':
# em1.c:1554:11: error: array subscript has type 'char' [-Werror=char-subscripts]
# braslist[*ep++] = lp;
# ^
# Maybe fix this later.
BUILDLINK_TRANSFORM+= rm:-Werror=char-subscripts
.include "../../mk/bsd.pkg.mk"
|