mirror of
https://git.freebsd.org/ports.git
synced 2025-04-28 01:26:39 -04:00
I had fixed the Makefile recreated the distfile on 2025-04-09, but have apperantently forgotten to include the Makefile in the commit. Thanks for pointing out this omission. PR: 285985 Reported by: michal@hanu.la
27 lines
533 B
Makefile
27 lines
533 B
Makefile
PORTNAME= jujutsu
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 0.28.2
|
|
PORTREVISION= 1
|
|
CATEGORIES= devel
|
|
|
|
MAINTAINER= se@FreeBSD.org
|
|
COMMENT= Git-compatible VCS that is both simple and powerful
|
|
WWW= https://jj-vcs.github.io/jj/latest/
|
|
|
|
LICENSE= APACHE20
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
LIB_DEPENDS= libssh2.so:security/libssh2
|
|
|
|
USES= cargo localbase ssl
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= jj-vcs
|
|
GH_PROJECT= jj
|
|
|
|
PLIST_FILES= bin/jj
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKDIR}/target/release/jj \
|
|
${STAGEDIR}${PREFIX}/bin/
|
|
|
|
.include <bsd.port.mk>
|