mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
22 lines
623 B
Bash
22 lines
623 B
Bash
# Maintainer: Allan McRae <allan@archlinux.org>
|
|
# Contributor: Andreas Radke <andyrtr@archlinux.org>
|
|
|
|
pkgname=dialog
|
|
pkgver=1.1_20080819
|
|
_pkgver=1.1-20080819
|
|
pkgrel=2
|
|
pkgdesc="A tool to display dialog boxes from shell scripts"
|
|
arch=('arm')
|
|
url="http://invisible-island.net/dialog/"
|
|
license=('GPL')
|
|
groups=('base')
|
|
depends=('ncurses>=5.6-8')
|
|
source=(ftp://invisible-island.net/${pkgname}/${pkgname}-$_pkgver.tgz)
|
|
md5sums=('3caebd641a9f337b980becb4444336c5')
|
|
|
|
build() {
|
|
cd ${srcdir}/$pkgname-$_pkgver
|
|
./configure --prefix=/usr --with-ncursesw --mandir=/usr/share/man
|
|
make || return 1
|
|
make DESTDIR=${pkgdir} install
|
|
}
|