-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dacb4c3
commit 1ef3ac4
Showing
1 changed file
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# -*- 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/umputun/spot 1.8.1 v | ||
name simplotask | ||
revision 0 | ||
categories sysutils | ||
maintainers {@sikmir disroot.org:sikmir} openmaintainer | ||
license MIT | ||
|
||
description A tool for effortless deployment and configuration management | ||
long_description {*}${description} | ||
homepage https://simplotask.com | ||
|
||
build.cmd make | ||
build.pre_args-append \ | ||
REV=v${version} | ||
build.args build | ||
|
||
checksums rmd160 5c6a5f657ee05a45c80395e571dc216371135b11 \ | ||
sha256 135b97bfa837f5da30c79b1eda93f8e1f6ed9e0c2a847ccab73d6535ca5ece10 \ | ||
size 32388760 | ||
|
||
destroot { | ||
xinstall -m 0755 ${worksrcpath}/.bin/spot ${destroot}${prefix}/bin | ||
xinstall -m 0755 ${worksrcpath}/.bin/spot-secrets ${destroot}${prefix}/bin | ||
|
||
xinstall -d ${destroot}${prefix}/share/man/man1 | ||
xinstall -m 0644 ${worksrcpath}/spot.1 \ | ||
${destroot}${prefix}/share/man/man1/ | ||
} |