summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: faae23d06eae10cb8e1a93a99190f31489a357ad (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: Sam Stuewe <halosghost at archlinux dot info>
_name=stag-graph
pkgname="${_name}-git"
pkgdesc='streaming bar graphs, for stats and stuff'
arch=('i686' 'x86_64')
url='https://github.com/seenaburns/stag'
pkgver=107.76c7b36
pkgrel=1
depends=('ncurses')
provides=('stag-graph')
conflicts=('stag-graph' 'stag-git')
source=("${_name}::git+${url}")
sha256sums=('SKIP')

pkgver () {
    cd "${srcdir}/${_name}"
    printf '%s.%s' "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}

build () {
    cd "${srcdir}/${_name}"
    make
}

package () {
    cd "${srcdir}/${_name}"
    make DESTDIR="${pkgdir}" PREFIX='/usr' install
}