added makefile, rVersion source, describe(1) entry

This commit is contained in:
gdr 1997-09-26 06:40:51 +00:00
parent b28de25362
commit e62ed561aa
3 changed files with 37 additions and 0 deletions

11
usr.bin/true/Makefile Normal file
View File

@ -0,0 +1,11 @@
#
# Devin Reade, 1997.
#
# $Id: Makefile,v 1.1 1997/09/26 06:40:51 gdr Exp $
#
# Program name
PROG = true
STACK = 512
.INCLUDE: /src/gno/prog.mk

9
usr.bin/true/true.desc Normal file
View File

@ -0,0 +1,9 @@
Name: true
Version: 1.0 (7 Aug 97)
Shell: GNO, ORCA/Shell
Author: Devin Reade.
Contact: gdr@eddore.myrias.com
Where: /bin/true
FTP: ground.isca.uiowa.edu apple2.caltech.edu trenco.myrias.com
Returns a 'true' status to the shell. Intended for use in shell scripts.

17
usr.bin/true/true.rez Normal file
View File

@ -0,0 +1,17 @@
/*
* $Id: true.rez,v 1.1 1997/09/26 06:40:51 gdr Exp $
*/
#include "Types.Rez"
resource rVersion (0x1, purgeable3, nocrossbank) {
{ 1, 0, 0, /* version 1.0.0 */
release, /* development|alpha|beta|final|release */
0 /* non-final release number */
},
verUS,
"true",
"Return a 'true' value to the shell\n"
"Author: Devin Reade <gdr@myrias.com>"
};