mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
52 lines
1.7 KiB
Tcl
52 lines
1.7 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/homeport/dyff 1.12.0 v
|
|
go.offline_build no
|
|
revision 0
|
|
|
|
description diff tool for YAML files, and sometimes JSON
|
|
long_description {*}${description}
|
|
|
|
categories textproc
|
|
installs_libs no
|
|
license MIT
|
|
maintainers {gmail.com:herby.gillot @herbygillot} \
|
|
openmaintainer
|
|
|
|
checksums rmd160 e9972ed38adb35f4eed14a754042f25c57c5fe0a \
|
|
sha256 3edeb78b3166fc7ba4cdea1c9339eacbd57d768f27a77564adf58dc8819df75f \
|
|
size 1221871
|
|
|
|
build.pre_args-append \
|
|
-ldflags \"-X ${go.package}/internal/cmd.version=${version}\"
|
|
build.args ./cmd/${name}
|
|
|
|
post-build {
|
|
# Generate completion files
|
|
file mkdir ${worksrcpath}/completion
|
|
|
|
foreach _shell {bash fish zsh} {
|
|
system -W ${worksrcpath} \
|
|
"./${name} completion ${_shell} > ./completion/${name}.${_shell}"
|
|
}
|
|
}
|
|
|
|
destroot {
|
|
xinstall -m 0755 ${worksrcpath}/${name} ${destroot}${prefix}/bin/
|
|
|
|
xinstall -d ${destroot}${prefix}/share/bash-completion/completions
|
|
copy ${worksrcpath}/completion/${name}.bash \
|
|
${destroot}${prefix}/share/bash-completion/completions/${name}
|
|
|
|
xinstall -d ${destroot}${prefix}/share/fish/vendor_completions.d
|
|
copy ${worksrcpath}/completion/${name}.fish \
|
|
${destroot}${prefix}/share/fish/vendor_completions.d/
|
|
|
|
xinstall -d ${destroot}${prefix}/share/zsh/site-functions
|
|
copy ${worksrcpath}/completion/${name}.zsh \
|
|
${destroot}${prefix}/share/zsh/site-functions/_${name}
|
|
}
|