17 lines
414 B
Plaintext
17 lines
414 B
Plaintext
# Description: A tool to display dialog boxes from shell scripts
|
|
# URL: https://invisible-island.net/dialog/
|
|
# Maintainer: CRUX System Team, core-ports at crux dot nu
|
|
# Depends on: ncurses
|
|
|
|
name=dialog
|
|
version=1.3-20211214
|
|
release=1
|
|
source=(https://invisible-mirror.net/archives/$name/$name-$version.tgz)
|
|
|
|
build () {
|
|
cd $name-$version
|
|
./configure --prefix=/usr --with-ncursesw
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|