core/dialog/PKGBUILD

25 lines
713 B
Bash
Raw Normal View History

2010-03-13 23:25:19 +08:00
# $Id: PKGBUILD 66443 2010-01-31 09:13:49Z allan $
# Maintainer: Allan McRae <allan@archlinux.org>
# Contributor: Andreas Radke <andyrtr@archlinux.org>
pkgname=dialog
pkgver=1.1_20100119
_pkgver=1.1-20100119
2010-03-22 04:46:45 +08:00
pkgrel=2
2010-03-13 23:25:19 +08:00
pkgdesc="A tool to display dialog boxes from shell scripts"
arch=('i686' 'x86_64')
url="http://invisible-island.net/dialog/"
license=('GPL')
groups=('base')
depends=('ncurses>=5.6-8')
source=(ftp://invisible-island.net/${pkgname}/${pkgname}-$_pkgver.tgz)
2010-03-23 02:39:57 +08:00
md5sums=('3d62219658fdddf3c6247fb45831a5d0')
2010-03-13 23:25:19 +08:00
build() {
cd ${srcdir}/$pkgname-$_pkgver
./configure --prefix=/usr --mandir=/usr/share/man \
--with-ncursesw --enable-nls
make || return 1
make DESTDIR=${pkgdir} install
}