50 lines
2.3 KiB
Makefile
50 lines
2.3 KiB
Makefile
PORTNAME= exercism
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 3.5.8
|
|
PORTREVISION= 4
|
|
CATEGORIES= misc
|
|
|
|
MAINTAINER= bofh@FreeBSD.org
|
|
COMMENT= CLI client for exercism.io
|
|
WWW= https://exercism.io/
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
USES= go:modules
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= exercism
|
|
GH_PROJECT= cli
|
|
GH_TUPLE= exercism:cli:v${DISTVERSION}:DEFAULT \
|
|
blang:semver:v3.5.1:blang_semver/vendor/github.com/blang/semver \
|
|
davecgh:go-spew:v1.1.1:davecgh_go_spew/vendor/github.com/davecgh/go-spew \
|
|
fsnotify:fsnotify:v1.6.0:fsnotify_fsnotify/vendor/github.com/fsnotify/fsnotify \
|
|
go-check:check:10cb98267c6c:go_check_check/vendor/gopkg.in/check.v1 \
|
|
go-ini:ini:v1.67.0:go_ini_ini/vendor/gopkg.in/ini.v1 \
|
|
go-yaml:yaml:v3.0.1:go_yaml_yaml/vendor/gopkg.in/yaml.v3 \
|
|
golang:net:v0.23.0:golang_net/vendor/golang.org/x/net \
|
|
golang:sys:v0.18.0:golang_sys/vendor/golang.org/x/sys \
|
|
golang:text:v0.14.0:golang_text/vendor/golang.org/x/text \
|
|
hashicorp:hcl:v1.0.0:hashicorp_hcl/vendor/github.com/hashicorp/hcl \
|
|
inconshreveable:go-update:8152e7eb6ccf:inconshreveable_go_update/vendor/github.com/inconshreveable/go-update \
|
|
inconshreveable:mousetrap:v1.1.0:inconshreveable_mousetrap/vendor/github.com/inconshreveable/mousetrap \
|
|
magiconair:properties:v1.8.7:magiconair_properties/vendor/github.com/magiconair/properties \
|
|
mitchellh:mapstructure:v1.5.0:mitchellh_mapstructure/vendor/github.com/mitchellh/mapstructure \
|
|
pelletier:go-toml:v2.0.6:pelletier_go_toml_v2/vendor/github.com/pelletier/go-toml/v2 \
|
|
pmezard:go-difflib:v1.0.0:pmezard_go_difflib/vendor/github.com/pmezard/go-difflib \
|
|
spf13:afero:v1.9.3:spf13_afero/vendor/github.com/spf13/afero \
|
|
spf13:cast:v1.5.0:spf13_cast/vendor/github.com/spf13/cast \
|
|
spf13:cobra:v1.7.0:spf13_cobra/vendor/github.com/spf13/cobra \
|
|
spf13:jwalterweatherman:v1.1.0:spf13_jwalterweatherman/vendor/github.com/spf13/jwalterweatherman \
|
|
spf13:pflag:v1.0.5:spf13_pflag/vendor/github.com/spf13/pflag \
|
|
spf13:viper:v1.15.0:spf13_viper/vendor/github.com/spf13/viper \
|
|
stretchr:testify:v1.8.4:stretchr_testify/vendor/github.com/stretchr/testify \
|
|
subosito:gotenv:v1.4.2:subosito_gotenv/vendor/github.com/subosito/gotenv
|
|
|
|
GO_PKGNAME= github.com/${GH_ACCOUNT}/${GH_PROJECT}
|
|
GO_TARGET= ./exercism
|
|
|
|
PLIST_FILES= bin/exercism
|
|
|
|
.include <bsd.port.mk>
|