blob: 74f26a917bd9c271618251554c6f4e54caf4dae2 (
plain)
1 # Description: A tool to display dialog boxes from shell scripts
2 # URL: https://invisible-island.net/dialog/
3 # Maintainer: CRUX System Team, core-ports at crux dot nu
4 # Depends on: ncurses
5
6 name=dialog
7 version=1.3-20221229
8 release=1
9 source=(https://invisible-mirror.net/archives/$name/$name-$version.tgz)
10
11 build () {
12 cd $name-$version
13 ./configure --prefix=/usr --with-ncursesw
14 make
15 make DESTDIR=$PKG install
16 }
|