Install contents of the dialog/TESTS directory to share/examples/dialog

This commit is contained in:
Alexey Zelkin 2000-01-07 13:35:10 +00:00
parent fcf72904c9
commit d2d012730f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=55569
3 changed files with 29 additions and 0 deletions

View File

@ -1,6 +1,8 @@
# Makefile for dialog
# $FreeBSD$
SUBDIR= TESTS
PROG= dialog
MAN1= dialog.1

View File

@ -0,0 +1,12 @@
# $FreeBSD$
FILES= README checklist ftreebox infobox inputbox menubox msgbox \
prgbox radiolist textbox treebox yesno
beforeinstall:
.for file in ${FILES}
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 ${file} \
${DESTDIR}/usr/share/examples/dialog
.endfor
.include <bsd.prog.mk>

View File

@ -0,0 +1,15 @@
These shell scripts demonstrate possibilities of the dialog(1) tool.
checklist - checkbox list
ftreebox - file tree box
infobox - info box
inputbox - input box
menubox - menu
msgbox - message box
prgbox - program box
radiolist - radio button list
textbox - simple text box
treebox - tree box
yesno - yes/no dialog
$FreeBSD$