blob: 78d6baa3d0ceb52bf75edc505b6db52188be90cb (
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.20240719
_ghpkgver=3.0.0-nightly.20240719
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_x86_64=('72bbc0ec989e859b2a64aebdc83c3b034f88120289f99831b3eabfd536bef211')
sha256sums_i686=('a891a2de396b82d086067ebb0f74cae955b81df18570fae6d6740089a3818009')
package() {
install -Dm755 "${_pkgname}" "${pkgdir}/usr/bin/${_pkgname}"
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${_pkgname}/LICENSE"
}
|