blob: 4f0bae44d1c65b8719834c25913a447bcfc75582 (
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
|
# This file was generated by GoReleaser. DO NOT EDIT.
# Maintainer: Saahil Bhavsar <saahil_bhavsar@outlook.com>
# Contributor: Saahil Bhavsar <saahil_bhavsar@outlook.com>
# Contributor: Jyotin Goel <b22ai063@iitj.ac.in>
pkgname='spok-bin'
pkgver=0.1.1
pkgrel=1
pkgdesc='Sans Password or Key (SPoK) - An easier way for remote server authentication'
url='https://github.com/devlup-labs/spok'
arch=('aarch64' 'x86_64')
license=('MIT')
provides=('spok')
conflicts=('spok')
source_aarch64=("${pkgname}_${pkgver}_aarch64.tar.gz::https://github.com/devlup-labs/spok/releases/download/0.1.1/spok_0.1.1_linux_arm64.tar.gz")
sha256sums_aarch64=('b912c83607b513ea35ab103abbd8c2e780b5d011c14d25eaed863a73692bef57')
source_x86_64=("${pkgname}_${pkgver}_x86_64.tar.gz::https://github.com/devlup-labs/spok/releases/download/0.1.1/spok_0.1.1_linux_amd64.tar.gz")
sha256sums_x86_64=('9e0812f2144ad6586fb70661c84077bfe46939e5b45d492e1712de9cab399824')
package() {
install -Dm755 "./bin/spok" "${pkgdir}/usr/bin/spok"
install -Dm755 "./scripts/configure-spok-server.sh" "${pkgdir}/etc/spok/scripts/configure-spok-server.sh"
install -Dm644 "./LICENSE" "${pkgdir}/usr/share/licenses/spok/LICENSE"
install -Dm644 "./README.md" "${pkgdir}/usr/share/doc/spok/README.md"
}
|