summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 881cfd8053728f2537edf884a0fbaba6d01063ea (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
# Maintainer: aksr <aksr at t-com dot me>
pkgname=go-peerflix-git
pkgver=r110.01557ce
pkgrel=1
epoch=
pkgdesc="A Golang port of peerflix."
arch=('i686' 'x86_64')
url="https://github.com/Sioro-Neoku/go-peerflix"
license=('MIT')
groups=()
depends=()
makedepends=('git' 'go')
optdepends=()
checkdepends=()
provides=()
conflicts=('go-peerflix')
replaces=()
backup=()
options=()
changelog=
install=
noextract=()
_gourl=github.com/Sioro-Neoku/go-peerflix

pkgver() {
  GOPATH="$srcdir" go get -d ${_gourl}
  cd "$srcdir/src/${_gourl}"
  printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}

build() {
  GOPATH="$srcdir" go get -fix -v ${_gourl}
}

package() {
  cd "$srcdir"
  install -Dm755 bin/go-peerflix "$pkgdir/usr/bin/go-peerflix"
  install -Dm644 src/${_gourl}/README.md $pkgdir/usr/share/doc/${pkgname%-*}/README
  install -Dm644 src/${_gourl}/LICENSE $pkgdir/usr/share/licenses/${pkgname%-*}/LICENSE
}