blob: be0c431978c62f765f9097e82d119e48d68809f2 (
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-20191209
8 release=1
9 #source=(https://invisible-mirror.net/archives/$name/$name-$version.tgz)
10 source=(ftp://ftp.invisible-island.net/$name/$name-$version.tgz)
11
12 build () {
13 cd $name-$version
14
15 ./configure --prefix=/usr --with-ncursesw
16
17 make
18 make DESTDIR=$PKG install
19 }
|