blob: 56694b26001207fc58a93a300ede730ea929a13a (
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
|
# Maintainer: Dimio <dimio at dimio dot org>
_pkgname=gost
pkgname=gost-v3-bin
pkgver=3.0.0.20250120
_ghpkgver=3.0.0-nightly.20250120
pkgrel=1
pkgdesc="GO Simple Tunnel - A simple security tunnel"
arch=('x86_64' 'i386')
url="https://gost.run/en/"
_ghurl="https://github.com/go-gost/gost"
license=('MIT')
provides=("${pkgname}=${pkgver}")
conflicts=("${_pkgname}")
source_x86_64=("${_ghurl}/releases/download/v${_ghpkgver}/${_pkgname}_${_ghpkgver}_linux_amd64.tar.gz")
source_i386=("${_ghurl}/releases/download/v${_ghpkgver}/${_pkgname}_${_ghpkgver}_linux_386.tar.gz")
sha256sums_i686=('dfb48ffc9be9667a54f028caf216ccf3346ba033318fa21b8cc1230d47ca7a4e')
sha256sums_x86_64=('6e89fdd8cbe8a6f34cc6c885f046874848459d8d54d9ff853480ee0ae9b9d031')
package() {
install -Dm755 "${_pkgname}" "${pkgdir}/usr/bin/${_pkgname}"
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${_pkgname}/LICENSE"
}
|