mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-19 00:13:33 +00:00
1219d920a4
- Remove dependency on gmake, it works fine with make - Remove explicit DEBUG_MAKE_ARGS_OFF, its value is implied - Use built-in test support in ports framework - Cleanup unneeded stuff Differential Revision: https://reviews.freebsd.org/D45902
32 lines
704 B
Makefile
32 lines
704 B
Makefile
PORTNAME= kakoune
|
|
DISTVERSION= 2024.05.18
|
|
PORTREVISION= 1
|
|
CATEGORIES= editors
|
|
MASTER_SITES= https://github.com/mawww/kakoune/releases/download/v${DISTVERSION}/
|
|
|
|
MAINTAINER= ashish@FreeBSD.org
|
|
COMMENT= Modal code editor with a focus on interactivity
|
|
WWW= https://kakoune.org
|
|
|
|
LICENSE= UNLICENSE
|
|
LICENSE_FILE= ${WRKSRC}/UNLICENSE
|
|
|
|
# See https://github.com/mawww/kakoune/issues/2520
|
|
RUN_DEPENDS= setsid:sysutils/setsid
|
|
|
|
USES= compiler:c++20-lang tar:bzip2
|
|
DATADIR= ${PREFIX}/share/kak
|
|
DOCSDIR= ${PREFIX}/share/doc/kak
|
|
|
|
OPTIONS_DEFINE= DEBUG DOCS
|
|
|
|
DEBUG_MAKE_ARGS= debug=yes
|
|
|
|
TEST_TARGET= test
|
|
TEST_ENV+= LC_ALL=en_US.UTF-8
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/kak
|
|
|
|
.include <bsd.port.mk>
|