mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
35 lines
1.3 KiB
Tcl
35 lines
1.3 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/jesseduffield/lazygit 0.63.0 v
|
|
revision 0
|
|
|
|
description A simple terminal UI for git commands, written in Go
|
|
long_description {*}$description
|
|
|
|
categories devel
|
|
installs_libs no
|
|
license MIT
|
|
maintainers {gmail.com:herby.gillot @herbygillot} \
|
|
openmaintainer
|
|
|
|
checksums rmd160 f5b6a75981557b5e13ca4a77fe21e8a08b70e16f \
|
|
sha256 56f028ad7700cbe4474e5fb09a617649a82d0963820d38757f61a93b31832610 \
|
|
size 4740791
|
|
|
|
# lazygit's dependencies are already vendored in the source code
|
|
# Allow Go modules so that we can build vendored dependencies
|
|
build.env-delete GO111MODULE=off
|
|
build.pre_args-append -mod=vendor
|
|
build.args -ldflags \" \
|
|
-X main.version=${version} \
|
|
-X main.buildSource=macports \
|
|
\"
|
|
|
|
destroot {
|
|
xinstall -m 0755 ${worksrcpath}/${name} ${destroot}${prefix}/bin/
|
|
file copy ${worksrcpath}/docs ${destroot}${prefix}/share/doc/${name}
|
|
}
|