mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
29 lines
1.2 KiB
Tcl
29 lines
1.2 KiB
Tcl
# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
|
|
|
|
PortSystem 1.0
|
|
PortGroup golang 1.0
|
|
|
|
go.setup github.com/Boeing/config-file-validator 2.2.2 v
|
|
categories sysutils textproc
|
|
maintainers {i0ntempest @i0ntempest} openmaintainer
|
|
license Apache-2
|
|
|
|
description tool to validate configuration files
|
|
long_description ${name} is a cross-platform CLI tool to validate different configuration file types,\
|
|
including plist, ini, json, xml, yaml, toml, and more.
|
|
|
|
checksums rmd160 d940a01876f87855d87e4a1d55231f4cfa88b450 \
|
|
sha256 43d2a3000424cb1e4eeb38c7ddd444930140f2ae106ac1ac66ef7b2f9451d631 \
|
|
size 5792324
|
|
|
|
# Needs multiple versions of github.com/apparentlymart/go-textseg
|
|
go.offline_build no
|
|
|
|
set binname [lindex [split ${name} -] [llength [split ${name} -]]-1]
|
|
build.env-append CGO_ENABLED=0
|
|
build.post_args -ldflags=\"-s -w -X 'github.com/Boeing/config-file-validator.version=${version}'\" -o ./${binname} ./cmd/${binname}
|
|
|
|
destroot {
|
|
xinstall -m 0755 ${worksrcpath}/${binname} ${destroot}${prefix}/bin/
|
|
}
|