# -*- 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 github 1.0 github.setup dagger dagger 0.11.6 v github.tarball_from releases revision 0 categories devel maintainers {judaew @judaew} openmaintainer license Apache-2 description A portable devkit for CI/CD pipelines long_description \ Using Dagger, software teams can develop powerful CICD pipelines with \ minimal effort, then run them anywhere. Benefits include: \ \n- Unify dev and CI environments. Write your pipeline once, Dagger will \ run it the same everywhere. \ \n- Reduce CI lock-in. No more re-writing everything from scratch every \ 6 months. homepage https://dagger.io switch ${build_arch} { x86_64 { distfiles dagger_v${version}_darwin_amd64${extract.suffix} checksums rmd160 0ac8f648b7a17b6e2a7fa599897576c2e6ccd387 \ sha256 8f3752117afd5cbccf0d79209c0cab5ecba8af55d03e46b5d4ae64a240108770 \ size 10018373 } arm64 { distfiles dagger_v${version}_darwin_arm64${extract.suffix} checksums rmd160 718f74fa691c4e6ac7eb505dd16e5fbcaebbdebf \ sha256 5ceb1f485b9bc7f363940d1a3c50f96a4da1d8292a0307294aabc379e5dedd08 \ size 9453745 } default { known_fail yes pre-fetch { ui_error "${subport} @ ${version} only supported for architectures ${supported_archs}" return -code error "Unsupported architecture: ${build_arch}" } } } extract.mkdir yes use_configure no build {} destroot { xinstall -m 0755 ${worksrcpath}/${name} ${destroot}${prefix}/bin/ # Shell completion xinstall -d ${destroot}${prefix}/etc/bash_completion.d xinstall -d ${destroot}${prefix}/share/zsh/site-functions xinstall -d ${destroot}${prefix}/share/fish/vendor_completions.d system "${destroot}${prefix}/bin/${name} completion bash > ${destroot}${prefix}/etc/bash_completion.d/${name}" system "${destroot}${prefix}/bin/${name} completion zsh > ${destroot}${prefix}/share/zsh/site-functions/_${name}" system "${destroot}${prefix}/bin/${name} completion fish > ${destroot}${prefix}/share/fish/vendor_completions.d/${name}.fish" }