PKGBUILDs/community/rolo/PKGBUILD
2009-10-09 21:15:33 -05:00

20 lines
622 B
Bash

#$Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
# Maintainer: Jeff Mickey <j@codemac.net>
pkgname=rolo
pkgver=011
pkgrel=2
pkgdesc="Tracks your contacts with vCards and displays them to you with a text-based menu."
arch=('i686' 'x86_64')
url="http://rolo.sourceforge.net"
license=('GPL')
depends=('ncurses>=5.7' 'libvc')
source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz)
md5sums=('c7478cdcc8179cb01755565901135e5e')
build() {
cd $startdir/src/$pkgname-$pkgver
./configure --prefix=/usr --mandir=/usr/share/man || return 1
make || return 1
make DESTDIR=$startdir/pkg install || return 1
}