summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 4a062212093a32a5350c870d3b66c7cdbe90af24 (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
# Maintainer: Nathan Isom <nathanisom27[at]gmail[dot]com>

_pkgname=bevelbar
pkgname=${_pkgname}-git
pkgver=2
pkgrel=1
pkgdesc='X11 status bar with beveled borders'
arch=('i686' 'x86_64')
url="https://github.com/vain/${_pkgname}"
license=('custom:Unlicense')
depends=()
makedepends=('git')
provides=("${_pkgname}")
conflicts=("${_pkgname}")
source=("git://github.com/vain/${_pkgname}.git")
md5sums=('SKIP')

pkgver() {
    cd "$srcdir/$_pkgname"
    git rev-list --count HEAD
}

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

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