mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
25 lines
713 B
Bash
25 lines
713 B
Bash
|
# $Id: PKGBUILD 42696 2009-06-18 16:23:53Z aaron $
|
||
|
# 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=('i686' 'x86_64')
|
||
|
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
|
||
|
}
|
||
|
|