blob: 410eabacaf52205cc69988aabb6eed58c49fb614 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# $NetBSD: Makefile,v 1.1 2019/09/20 14:56:00 nia Exp $
.include "Makefile.common"
MAINTAINER= pkgsrc-users@NetBSD.org
COMMENT= Single-player dungeon exploration game (text-only version)
CONFLICTS+= angband-tty-[0-9]*
CONFLICTS+= angband-sdl-[0-9]*
CONFLICTS+= angband-x11-[0-9]*
SUPERSEDES= angband-tty-[0-9]*
RM_DIRS= fonts icons sounds tiles
post-install:
.for dir in ${RM_DIRS}
${RM} -rf ${DESTDIR}${PREFIX}/share/angband/${dir}
.endfor
.include "../../mk/bsd.pkg.mk"
|