mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-11 01:04:36 +08:00
25 lines
715 B
Bash
25 lines
715 B
Bash
# $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
|
|
pkgrel=1
|
|
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)
|
|
# md5sums=('ada629276646b462aaab1e734f626eb6')
|
|
|
|
build() {
|
|
cd ${srcdir}/$pkgname-$_pkgver
|
|
./configure --prefix=/usr --mandir=/usr/share/man \
|
|
--with-ncursesw --enable-nls
|
|
make || return 1
|
|
make DESTDIR=${pkgdir} install
|
|
}
|