ports/shells/nushell/Makefile

31 lines
547 B
Makefile
Raw Normal View History

2023-08-16 22:26:55 +00:00
# nushell removed support for arm and riscv64 in 0.81.0
NOT_FOR_ARCHS = arm riscv64
COMMENT = a new type of shell
GH_ACCOUNT = nushell
GH_PROJECT = nushell
2023-09-08 05:21:37 +00:00
GH_TAGNAME = 0.84.0
2023-08-16 22:26:55 +00:00
CATEGORIES = shells
# MIT
PERMIT_PACKAGE = Yes
MODULES = devel/cargo
MODCARGO_CRATES_KEEP += libsqlite3-sys
.include "crates.inc"
CONFIGURE_STYLE = cargo
SEPARATE_BUILD = Yes
2023-09-08 05:21:37 +00:00
# For Tests
PORTHOME = ${WRKSRC}
WANTLIB += ${MODCARGO_WANTLIB} crypto m ssl
2023-08-16 22:26:55 +00:00
do-install:
${INSTALL_PROGRAM} ${WRKBUILD}/target/release/nu ${PREFIX}/bin/
.include <bsd.port.mk>