summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 2024f64e7916301ae6cf1c39ce7f090e939d7d9d (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
# Maintainer: Alin Porcic <alin.porcic@gmail.com>
pkgname=i3brain
pkgver=1.1
pkgrel=1
epoch=
pkgdesc="A simple status bar for i3."
arch=('any')
url="https://github.com/onixion/i3brain"
license=('MIT')
groups=()
depends=()
makedepends=('cmake')
checkdepends=()
optdepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=()
install=
changelog=
source=("https://github.com/onixion/i3brain/archive/1.1.tar.gz")
noextract=()
md5sums=("8ef85ea4235ed7c92fe7beed269241c2")
validpgpkeys=()

build() {
	cd "$pkgname-$pkgver"
	mkdir -p build
	cd build
	cmake -G "Unix Makefiles" ..
	make
}

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