core/dialog/PKGBUILD

29 lines
798 B
Bash
Raw Normal View History

2010-05-16 23:08:55 +08:00
# $Id: PKGBUILD 80291 2010-05-14 23:41:28Z eric $
2010-03-13 23:25:19 +08:00
# Maintainer: Allan McRae <allan@archlinux.org>
# Contributor: Andreas Radke <andyrtr@archlinux.org>
pkgname=dialog
pkgver=1.1_20100119
_pkgver=1.1-20100119
2010-05-16 23:08:55 +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')
depends=('ncurses>=5.6-8')
source=(ftp://invisible-island.net/${pkgname}/${pkgname}-$_pkgver.tgz)
2010-04-05 19:44:27 +08:00
md5sums=('3d62219658fdddf3c6247fb45831a5d0')
2010-05-16 23:08:55 +08:00
sha1sums=('ebf5fa7419601425a10446215cc477d92c191c5a')
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
2010-05-16 23:08:55 +08:00
}
package() {
cd ${srcdir}/$pkgname-$_pkgver
2010-03-13 23:25:19 +08:00
make DESTDIR=${pkgdir} install
}