mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
50 lines
1.6 KiB
Tcl
50 lines
1.6 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/wtfutil/wtf 0.50.0 v
|
|
name wtfutil
|
|
revision 0
|
|
|
|
homepage https://wtfutil.com
|
|
|
|
description A personal terminal-based dashboard utility, designed for \
|
|
displaying infrequently-needed, but very important, daily \
|
|
data.
|
|
|
|
long_description {*}${description}
|
|
|
|
categories sysutils
|
|
installs_libs no
|
|
license MPL-2
|
|
maintainers {gmail.com:herby.gillot @herbygillot} \
|
|
openmaintainer
|
|
|
|
checksums rmd160 ea92703298d1c24441b11066511aed7f0f3d6078 \
|
|
sha256 cec9b0a4d01dd6d2a81a8cd429e992786a2a3a212d4e2c090ab4d10172ca9794 \
|
|
size 2633593
|
|
|
|
build.args -o ${name}
|
|
|
|
# FIXME: This port currently can't be built without allowing go mod to fetch
|
|
# dependencies during the build phase. See
|
|
# https://trac.macports.org/ticket/61192
|
|
go.offline_build no
|
|
|
|
destroot {
|
|
xinstall -m 0755 ${worksrcpath}/${name} ${destroot}${prefix}/bin/${name}
|
|
xinstall -d -m 0755 ${destroot}${prefix}/share/${name}
|
|
xinstall -d -m 0755 ${destroot}${prefix}/share/${name}/sample_configs
|
|
|
|
xinstall -m 0644 \
|
|
{*}[glob ${worksrcpath}/_sample_configs/*] \
|
|
${destroot}${prefix}/share/${name}/sample_configs
|
|
}
|
|
|
|
notes "
|
|
Examples of configuration for wtfutil can be found in:
|
|
|
|
${prefix}/share/${name}/sample_configs
|
|
"
|