mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-30 10:38:37 +00:00
77f8276a88
- Use the version tag instead of commit hash when they're the same. - Remove unnneeded variables. - Simplify go- ports when possible. - Various fixes. Sponsored by: Absolight
35 lines
510 B
Makefile
35 lines
510 B
Makefile
# Created by: Luke Jee <lukejee@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= gvp
|
|
PORTVERSION= 0.3.0
|
|
DISTVERSIONPREFIX= v
|
|
CATEGORIES= devel
|
|
|
|
MAINTAINER= lukejee@gmail.com
|
|
COMMENT= Go Versioning Manager
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENCE
|
|
|
|
RUN_DEPENDS= bash:shells/bash \
|
|
go:lang/go
|
|
|
|
USES= shebangfix
|
|
|
|
SHEBANG_FILES= bin/gvp
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= pote
|
|
|
|
NO_BUILD= yes
|
|
|
|
NO_ARCH= yes
|
|
|
|
PLIST_FILES= bin/gvp
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/bin/gvp ${STAGEDIR}${PREFIX}/bin/
|
|
|
|
.include <bsd.port.mk>
|