summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 3bb3c76d51e335cf82640c63fba85256d1beb628 (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: MikoĊ‚aj Baranowski <mikolajb@gmail.com>

pkgname=gitfetch
pkgver=0.3
pkgrel=1
pkgdesc='Gitfetch performs git featch on multiple repositories, can be used as a daemon'
license=('MIT')
arch=('x86_64' 'i686')
url='https://github.com/mikolajb/gitfetch'
depends=()
makedepends=('go' 'glide')
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/mikolajb/${pkgname}/archive/${pkgver}.tar.gz")
sha256sums=('1e1aa639c092ba0670f7037fbcf2835ee598e973a3f7f86fdf3679589bfda13f')

build() {
  msg2 'Settgin GOPATH'
  cd "${srcdir}/${pkgname}-${pkgver}"
  mkdir -p "${srcdir}/gopath"
  export GOPATH="${srcdir}/gopath"

  msg2 'Getting go dep tool'
  go get github.com/golang/dep/cmd/dep

  mkdir -p "${GOPATH}/src/github.com/mikolajb"
  ln -sf "$(pwd)" "${GOPATH}/src/github.com/mikolajb/${pkgname}"
  cd "${GOPATH}/src/github.com/mikolajb/${pkgname}"

  msg2 'Fetching dependencies...'
  "$GOPATH/bin/dep" ensure

  msg2 'Compiling...'
  go build -o gitfetch
}

package() {
  msg2 'Installing...'

  install -Dm755 ${srcdir}/${pkgname}-${pkgver}/gitfetch ${pkgdir}/usr/bin/gitfetch
  install -Dm644 ${srcdir}/${pkgname}-${pkgver}/gitfetch.service ${pkgdir}/usr/lib/systemd/user/gitfetch.service
  install -Dm644 ${srcdir}/${pkgname}-${pkgver}/gitfetch.timer ${pkgdir}/usr/lib/systemd/user/gitfetch.timer
}