summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 73b44ea220ffa42f0321aba543895bb09471cb5f (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
# Maintainer: Manuel Olguin <molguin@dcc.uchile.cl>
pkgname=battmon
pkgver=0.5beta2
pkgrel=1
epoch=
pkgdesc="A lightweight battery monitor in C++."
arch=('any')
url="https://github.com/arachnid92/battmon"
license=('GPL2')
groups=()
depends=(libnotify boost-libs gdk-pixbuf2 gtk2 glib2)
makedepends=(boost cmake git)
checkdepends=()
optdepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=()
install=
changelog=
source=("git+https://github.com/arachnid92/battmon.git")
noextract=()
md5sums=('SKIP')
_gitname=battmon

build() {
	cd $_gitname
    cmake ./
}

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