mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-05 16:01:42 +01:00
39 lines
1.1 KiB
Plaintext
39 lines
1.1 KiB
Plaintext
# Contributor: 6543 <6543@obermui.de>
|
|
# Maintainer: 6543 <6543@obermui.de>
|
|
pkgname=tea
|
|
pkgver=0.7.0
|
|
pkgrel=1
|
|
pkgdesc="A command line tool to interact with Gitea servers"
|
|
url="https://gitea.com/gitea/tea"
|
|
license="MIT"
|
|
arch="all"
|
|
makedepends="go"
|
|
options="!check" # no testsuite
|
|
subpackages="$pkgname-bash-completion"
|
|
source="$pkgname-$pkgver.tar.gz::https://gitea.com/gitea/tea/archive/v$pkgver.tar.gz
|
|
bash_autocomplete
|
|
"
|
|
|
|
builddir="$srcdir/src/code.gitea.io/$pkgname"
|
|
|
|
prepare() {
|
|
mkdir -p "${builddir%/*}"
|
|
mv $pkgname "$builddir"
|
|
default_prepare
|
|
}
|
|
|
|
build() {
|
|
export GOPATH="$srcdir"
|
|
export TEA_VERSION="$pkgver"
|
|
unset LDFLAGS
|
|
make build
|
|
}
|
|
|
|
package() {
|
|
install -Dm755 "$builddir"/$pkgname "$pkgdir"/usr/bin/$pkgname
|
|
install -Dm644 "$srcdir"/bash_autocomplete "$pkgdir"/usr/share/bash-completion/completions/tea
|
|
}
|
|
|
|
sha512sums="3326d7c4f4e30b8c00c8ebecf4c6830da9fb314656c03a42730189e6972e9105674af9e19c0ada6aebac0fc89a58f24da079126e5d73c8a59b18854f4c180719 tea-0.7.0.tar.gz
|
|
d89c90cde59ec43c0ff3eb9db9928cbb8be765e264eff8dabf2889507a5fe5d4799d89a7b02832c11954d684f232e1265f4aa740c9c5e26954d2ac8f7d4a7a57 bash_autocomplete"
|