gno/usr.bin/cksum/cksum.rez
gdr-ftp d08a55f17e Makefile:
- put cksum in /usr/bin vice /bin

cksum.1:
	- added "sum" to the NAME section so that whatis(1) gets a hit

cksum.rez:
	- added (initial test) of automatically displaying the build
	  date.

mkso.data:
	- used for making man page ".so links"

mklink.data:
	- used to replicate cksum(1) as sum(1)
1998-02-15 00:25:48 +00:00

35 lines
700 B
Plaintext

/*
* Resources for version and comment
*
* $Id: cksum.rez,v 1.2 1998/02/15 00:25:46 gdr-ftp Exp $
*/
#define PROG "cksum/sum"
#define DESC "Display file checksums and block counts."
#include "Types.rez"
#include "/src/gno/build.tools/builddate.rez"
/*
* Version
*/
resource rVersion (1, purgeable3) {
{ 2, 0, 0, /* Version 2.0.0 */
release, /* development|alpha|beta|final|release */
0 }, /* non-final release number */
verUS, /* Country */
PROG, /* Program name */
DESC "\nReleased with GNO/ME.\n"
BUILD_DATE
};
/*
* Comment
*/
resource rComment (1, purgeable3) {
PROG " v2.0\n"
"GNO utility: " DESC "\n"
"Ported from FreeBSD code by Dave Tribby.\n"
BUILD_DATE
};