summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 7cc2a48e8dfc3a991a2fac2f19e80d44c8d1f94e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Maintainer: Florent Ch. <florentc@tutanota.com>
pkgname=xob
pkgver=0.1
pkgrel=1
pkgdesc="A lightweight volume (or anything) bar for the X Window System"
arch=('x86_64')
url="https://github.com/florentc/xob"
license=('GPL3')
depends=('libx11' 'libconfig')
makedepends=('git')
source=("${pkgname}::git+${url}.git#tag=v${pkgver}")
md5sums=('SKIP')

build() {
	cd "$pkgname"
	make PREFIX="/usr"
}

package() {
	cd "$pkgname"
	make DESTDIR="$pkgdir/" install
}