forked from freebsd/freebsd-ports
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
44 lines (32 loc) · 1011 Bytes
/
Makefile
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
PORTNAME= kakoune
DISTVERSION= 2023.08.05
CATEGORIES= editors
MASTER_SITES= https://github.com/mawww/kakoune/releases/download/v${DISTVERSION}/
MAINTAINER= [email protected]
COMMENT= Modal code editor with a focus on interactivity
WWW= https://kakoune.org
LICENSE= UNLICENSE
LICENSE_FILE= ${WRKSRC:H}/UNLICENSE
RUN_DEPENDS= setsid:sysutils/setsid
USES= compiler:c++20-lang gmake tar:bzip2
DATADIR= ${PREFIX}/share/kak
DOCSDIR= ${PREFIX}/share/doc/kak
PATCH_WRKSRC= ${WRKSRC:H}
WRKSRC_SUBDIR= src
OPTIONS_DEFINE= DEBUG DOCS
DEBUG_MAKE_ARGS= debug=yes
DEBUG_MAKE_ARGS_OFF= debug=no
.include <bsd.port.pre.mk>
.if ${OSVERSION} > 1302506
PATCHFILES= 344d31f42b8ced12626d4f87a22ffa5a671668fd.patch
PATCH_SITES= https://github.com/mawww/kakoune/commit/
PATCH_DIST_STRIP= -p1
.endif
post-patch:
@${REINPLACE_CMD} -e '/-O3/d' \
${WRKSRC}/Makefile
post-install:
${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/kak
do-test:
@cd ${WRKSRC:H}/test && ${SETENV} LC_ALL=en_US.UTF-8 ./run
.include <bsd.port.post.mk>