mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-20 04:02:27 +00:00
7458880a0b
Approved by: pi (mentor) Relnotes: https://github.com/jesseduffield/lazygit/releases/tag/v0.2.2 https://github.com/jesseduffield/lazygit/releases/tag/v0.3.0 https://github.com/jesseduffield/lazygit/releases/tag/v0.3.1 Differential Revision: https://reviews.freebsd.org/D17127
27 lines
555 B
Makefile
27 lines
555 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= lazygit
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 0.3.1
|
|
CATEGORIES= devel
|
|
|
|
MAINTAINER= meta@FreeBSD.org
|
|
COMMENT= Simple terminal UI for git commands
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
USES= go
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= jesseduffield
|
|
|
|
PLIST_FILES= bin/${PORTNAME}
|
|
|
|
post-extract:
|
|
${MKDIR} ${GO_WRKSRC:H}
|
|
${LN} -sf ${WRKSRC} ${GO_WRKSRC:H}/${PORTNAME}
|
|
${MKDIR} ${GO_WRKSRC}/vendor/github.com/${GH_ACCOUNT}/${PORTNAME}/
|
|
${MV} ${GO_WRKSRC}/pkg ${GO_WRKSRC}/vendor/github.com/${GH_ACCOUNT}/${PORTNAME}/
|
|
|
|
.include <bsd.port.mk>
|