mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-19 00:13:33 +00:00
eb6bd5196a
In addition to many enhancements the "jj sparse" and "jj log" commands have been changed. See the release notes at https://github.com/martinvonz/jj/releases/tag/v0.16.0 for a complete list of changes.
28 lines
576 B
Makefile
28 lines
576 B
Makefile
PORTNAME= jujutsu
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 0.16.0
|
|
CATEGORIES= devel
|
|
|
|
MAINTAINER= se@FreeBSD.org
|
|
COMMENT= Git-compatible VCS that is both simple and powerful
|
|
WWW= https://github.com/martinvonz/jj/README.md
|
|
|
|
LICENSE= APACHE20
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
LIB_DEPENDS= libssh2.so:security/libssh2 \
|
|
libzstd.so:archivers/zstd
|
|
|
|
USES= cargo localbase ssl
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= martinvonz
|
|
GH_PROJECT= jj
|
|
|
|
PLIST_FILES= bin/jj
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKDIR}/target/*-unknown-freebsd/release/jj \
|
|
${STAGEDIR}${PREFIX}/bin/
|
|
|
|
.include <bsd.port.mk>
|