blob: f5e0660351f9d9d18eb6f8acf049a2b567dee87a (
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
28
|
# Maintainer: Vinay Shastry <vinayshastry at gmail dot com>
pkgname=wormhole-william
pkgver=1.0.6
pkgrel=1
pkgdesc='A go (golang) implementation of magic wormhole. It provides secure end-to-end encrypted file transfers between computers. It is compatible with the official python magic wormhole cli tool (see magic-wormhole package).'
arch=('x86_64')
url="https://github.com/psanford/${pkgname}"
license=('MIT')
depends=('glibc')
makedepends=('go' 'git')
source=("${url}/archive/v${pkgver}.tar.gz")
sha256sums=('89161c90fff42ca40dc868fc920f90432655164375076525cd1c95f36a4b91d5')
build() {
cd "${pkgname}-${pkgver}"
go build \
-ldflags "-extldflags ${LDFLAGS}" \
-gcflags "all=-trimpath=${PWD}" \
-asmflags "all=-trimpath=${PWD}" \
-o "${pkgname}" .
}
package() {
cd "${pkgname}-${pkgver}"
install -Dm755 -t "${pkgdir}/usr/bin/" "${pkgname}"
install -Dm644 -t "${pkgdir}/usr/share/licenses/${pkgname}/" LICENSE
}
|