blob: 457e8755263e1bc68764400e8bd96c93115c9162 (
plain)
1 # Description: A tool to display dialog boxes from shell scripts
2 # URL: http://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-20190808
8 release=1
9 source=(https://invisible-mirror.net/archives/$name/$name-$version.tgz)
10
11 build () {
12 cd $name-$version
13
14 ./configure --prefix=/usr --with-ncursesw
15
16 make
17 make DESTDIR=$PKG install
18 }
|