blob: 76624edf4e6659b2a74fb9a4dc1809daf172e2e4 (
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
|
# Maintainer: tywyqu <tywyqu at hi2 dot in>
pkgname=storj-uplink-c
_basename=uplink-c
pkgver=1.5.1
pkgrel=1
pkgdesc="Storj Tardigrade Uplink-C"
arch=('x86_64')
url="https://github.com/storj/uplink-c"
license=(' AGPL-3.0')
source=("https://github.com/storj/${_basename}/archive/v${pkgver}.tar.gz")
makedepends=('go')
sha256sums=('f96325d25a5d3bfa2c608c142821637d9ffbf87da838482781b95bcb5d3bb082')
build() {
cd "$_basename-$pkgver"
make build
}
package() {
cd "$_basename-$pkgver"
make install DESTDIR="$pkgdir/usr/"
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}
|