PKGBUILDs/community/rolo/PKGBUILD

21 lines
622 B
Bash
Raw Normal View History

2009-10-10 02:15:33 +00:00
#$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
}