# -*- 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/securego/gosec 2.22.2 v
go.package          github.com/securego/gosec/v2
go.offline_build    no
revision            0

homepage            https://securego.io

description         Golang security checker. Inspects source code for \
                    security problems by scanning the Go AST.

long_description    {*}${description}

categories          security
installs_libs       no
license             Apache-2
maintainers         {gmail.com:herby.gillot @herbygillot} \
                    openmaintainer

checksums           rmd160  f035aa3bbcb0b082f5ed6b6f9370724bbf096ffb \
                    sha256  790a473a4d8b4d6181268e7eb9481296ecef040007185f4924cdf864d9badccb \
                    size    171173

build.cmd           make
build.pre_args-append \
                    BUILD_DATE= \
                    GIT_TAG=${github.tag_prefix}${version}
build.args          build-${goos}

patch {
    reinplace -E "s|build-linux|build-${goos}|g"        ${worksrcpath}/Makefile
    reinplace -E "s|GOOS=linux|GOOS=${goos}|g"          ${worksrcpath}/Makefile
    reinplace -E "s|GOARCH=amd64|GOARCH=${goarch}|g"    ${worksrcpath}/Makefile
}

destroot {
    xinstall -m 0755 ${worksrcpath}/${name} ${destroot}${prefix}/bin/
}