summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 384b7c04796e3c11bab92933ad662c397fbb4a50 (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: Loui Chang <base64:bG91aXBjLmlzdEBnbWFpbC5jb20=>
# Contributor: Matthias Hueser <mail at mhueser dot de>
# Contributor: Daniel Griffiths <ghost1227 at archlinux dot us>

pkgname=rolo-git
pkgver=1
pkgrel=2
pkgdesc="Tracks your contacts with vCards and displays them to you with
 a text-based menu."
arch=('i686' 'x86_64')
url="https://github.com/yourealwaysbe/rolo"
license=('GPL')
depends=('ncurses' 'libvc-git')
makedepends=('autoconf')
conflicts=(rolo)
provides=(rolo)
source=(git+https://github.com/yourealwaysbe/rolo.git)
md5sums=('SKIP')

build() {
  cd $srcdir/rolo
  autoreconf -f -i
  ./configure --prefix=/usr --mandir=/usr/share/man
  make
}

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