2009-10-10 02:23:22 +00:00
|
|
|
# Contributor: damir <damir@archlinux.org>
|
|
|
|
# Maintainer: Thayer Williams <thayer@archlinux.org>
|
|
|
|
|
|
|
|
pkgname=abook
|
|
|
|
pkgver=0.6.0pre2
|
|
|
|
pkgrel=2
|
|
|
|
pkgdesc="A text-based addressbook designed for use with mutt"
|
2009-10-10 15:49:59 +00:00
|
|
|
arch=('arm')
|
2009-10-10 02:23:22 +00:00
|
|
|
url="http://abook.sourceforge.net"
|
|
|
|
license=('GPL2')
|
|
|
|
depends=('readline')
|
|
|
|
source=(http://abook.sourceforge.net/devel/abook-$pkgver.tar.gz)
|
|
|
|
md5sums=('1e4a7210b3507db7b3d47ee7a2457934')
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
|
|
./configure --prefix=/usr || return 1
|
|
|
|
make || return 1
|
|
|
|
make prefix=${pkgdir}/usr install || return 1
|
|
|
|
install -d ${pkgdir}/usr/share || return 1
|
|
|
|
mv ${pkgdir}/usr/man ${pkgdir}/usr/share || return 1
|
|
|
|
}
|