17 lines
398 B
Plaintext
17 lines
398 B
Plaintext
# Description: A tool to display dialog boxes from shell scripts
|
|
# URL: http://hightek.org/dialog/
|
|
# Maintainer: Simone Rota, sip at crux dot nu
|
|
# Depends on: ncurses
|
|
|
|
name=dialog
|
|
version=1.1-20080316
|
|
release=1
|
|
source=(ftp://dickey.his.com/dialog/$name-$version.tgz)
|
|
|
|
build () {
|
|
cd $name-$version
|
|
./configure --prefix=/usr --with-ncursesw
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|