Base commit since last update: 97939604f447 - git-arc: Add patch -b option Sponsored by: The FreeBSD Foundation
44 lines
1.1 KiB
Makefile
44 lines
1.1 KiB
Makefile
PORTNAME= freebsd-git-devtools
|
|
PORTVERSION= 20251204
|
|
CATEGORIES= devel
|
|
MASTER_SITES= https://raw.githubusercontent.com/freebsd/freebsd-src/${_REV}/tools/tools/git/
|
|
DISTFILES= git-arc.sh \
|
|
git-arc.1 \
|
|
mfc-candidates.lua
|
|
DIST_SUBDIR= ${PORTNAME}_${_REV}
|
|
|
|
MAINTAINER= jrm@FreeBSD.org
|
|
COMMENT= Simple Git tools from the FreeBSD src repository
|
|
WWW= https://github.com/freebsd/freebsd-src/tree/main/tools/tools/git
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
|
|
RUN_DEPENDS= ${LOCALBASE}/lib/php/arcanist/bin/arc:devel/arcanist-lib \
|
|
git:devel/git \
|
|
jq:textproc/jq
|
|
|
|
USES= lua shebangfix
|
|
SHEBANG_FILES= mfc-candidates.lua
|
|
lua_OLD_CMD= /usr/libexec/flua
|
|
|
|
EXTRACT_CMD= ${CP}
|
|
EXTRACT_BEFORE_ARGS= # empty
|
|
EXTRACT_AFTER_ARGS= .
|
|
NO_ARCH= yes
|
|
NO_BUILD= yes
|
|
|
|
NO_WRKSUBDIR= yes
|
|
|
|
PLIST_FILES= bin/git-arc \
|
|
bin/mfc-candidates \
|
|
share/man/man1/git-arc.1.gz
|
|
|
|
_REV= 97939604f447de0d06e6cc2c15f19c6f7be30cd2
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/git-arc.sh ${STAGEDIR}${PREFIX}/bin/git-arc
|
|
${INSTALL_SCRIPT} ${WRKSRC}/mfc-candidates.lua ${STAGEDIR}${PREFIX}/bin/mfc-candidates
|
|
${INSTALL_MAN} ${WRKSRC}/git-arc.1 ${STAGEDIR}${PREFIX}/share/man/man1/
|
|
|
|
.include <bsd.port.mk>
|