mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
22 lines
651 B
Bash
22 lines
651 B
Bash
# 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"
|
|
arch=('arm')
|
|
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
|
|
}
|