blob: a4c470c82a0ab10d0db3438d167d787658a633fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# Copyright 2023-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit go-module shell-completion
DESCRIPTION="The MSSQL SQLCMD CLI tool"
HOMEPAGE="https://learn.microsoft.com/sql/tools/sqlcmd/go-sqlcmd-utility"
SRC_URI="https://github.com/microsoft/go-${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
DEPS_URI="https://github.com/freijon/go-${PN}/releases/download/v${PV}/${P}-deps.tar.xz"
SRC_URI+=" ${DEPS_URI}"
S="${WORKDIR}/go-${P}"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
src_compile() {
ego build -o "${PN}" -ldflags="-X main.version=${PV}" ./cmd/modern
}
src_install() {
dobin "${PN}"
mkdir "completions" || die
./sqlcmd completion bash > "completions/${PN}" || die
./sqlcmd completion fish > "completions/${PN}.fish" || die
./sqlcmd completion zsh > "completions/_${PN}" || die
dobashcomp "completions/${PN}"
dofishcomp "completions/${PN}.fish"
dozshcomp "completions/_${PN}"
local DOCS=(
"README.md"
"SECURITY.md"
)
einstalldocs
}
|