summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 293bf715ec4d2887c0a8da7eaa9ba51969604645 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Maintainer: 13floorelevators <the13thfloorelevators@protonmail.com> <BURST-737A-XKSG-M424-67UVT>

pkgname=aspera
_realname=Aspera
pkgver=v1.0
pkgrel=1
pkgdesc="My fork of PoCC's BURST aspera"
arch=('x86_64')
url="https://github.com/RokyErickson/Aspera"
license=('GPL3')
makedepends=(go dep git go)
source=("git"+"https://github.com/RokyErickson/Aspera.git")
sha256sums=('SKIP')
pkgver() {
        cd "${srcdir}"
        git describe --always  --long --tags | sed 
's/\([^-]*-g\)/r\1/;s/-/./g'
}


_importpath="github.com/RokyErickson/${_realname}"

prepare() {
  export GOPATH="${srcdir}/_go"
  mkdir -p $(dirname "$GOPATH/src/${_importpath}/")
  ln -sf "${srcdir}/${_realname}" "$GOPATH/src/${_importpath}"
  cd "$GOPATH/src/${_importpath}"
  dep ensure -v
}

check() {
  export GOPATH="${srcdir}/_go"
  cd "$GOPATH/src/${_importpath}"
  # see https://github.com/snail007/goproxy/issues/156
  #go test $(go list ./...)
}

build() {
  export GOPATH="${srcdir}/_go"
  cd "$GOPATH/src/${_importpath}"
  go build
}

package() {
  export GOPATH="$srcdir/_go"
  cd "$GOPATH/src/${_importpath}"
  install -dm755 "$pkgdir/usr/bin"
  install -m755 "${_realname}" "$pkgdir/usr/bin/${_realname}"
}