From c6cb5e7f0692fbcea2a6ad5b037680f41564be92 Mon Sep 17 00:00:00 2001 From: Kevin Lange Date: Wed, 9 May 2012 16:58:24 -0500 Subject: So totally should have known about that. Bump to 1.0 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a44b116..f7f9919 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ package = nyancat -version = 0.1 +version = 1.0 tarname = $(package) distdir = $(tarname)-$(version) -- cgit v1.2.3 From 10869208d2dd7be4aabbbb6b09ff4575d6593b1e Mon Sep 17 00:00:00 2001 From: Jonathan McCrohan Date: Sun, 20 May 2012 01:18:46 +0100 Subject: Fix useless build flags Pass CPPFLAGS and CFLAGS to the compiler. I assume LFLAGS was a typo and should be LDFLAGS instead. Signed-off-by: Jonathan McCrohan --- src/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile b/src/Makefile index 1701c11..c77c6cb 100644 --- a/src/Makefile +++ b/src/Makefile @@ -3,7 +3,7 @@ OBJECTS = nyancat.o all: nyancat nyancat: $(OBJECTS) - $(CC) $(LFLAGS) $(OBJECTS) -o $@ + $(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) $(OBJECTS) -o $@ clean: -rm -f $(OBJECTS) nyancat -- cgit v1.2.3 From 1224377cf07853c622197bdd4fbc6aeb1f600fcc Mon Sep 17 00:00:00 2001 From: Jonathan McCrohan Date: Wed, 23 May 2012 23:26:40 +0100 Subject: Upstream Debian nyancat manpage --- nyancat.1 | 64 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 nyancat.1 diff --git a/nyancat.1 b/nyancat.1 new file mode 100644 index 0000000..af289f9 --- /dev/null +++ b/nyancat.1 @@ -0,0 +1,64 @@ +.TH NYANCAT 1 "May, 2012" +.SH NAME +nyancat \- terminal-based Pop Tart Cat animation +.SH SYNOPSIS +.B nyancat [ -hitn ] [-f frames] +.SH DESCRIPTION +.B nyancat +is an animated, color, ANSI-text program that renders a loop of the +classic Nyan Cat animation. +.PP +nyancat makes use of various ANSI escape sequences to render color, or in the case +of a VT220, simply dumps text to the screen. +.SH OPTIONS +.TP +.B \-i, --intro +Show introduction / about information on startup. +.TP +.B \-t, --telnet +Enable telnet mode. +.TP +.B \-n, --no-counter +Do not display the timer. +.TP +.B \-s, --no-title +Do not set the titlebar text. +.TP +.B \-e, --no-clear +Do not clear the display between frames. +.TP +.B \-f, --frames +Display the requested number of frames, then quit. +.TP +.B \-r, --min-rows +Crop the animation from the top. +.TP +.B \-R, --max-rows +Crop the animation from the bottom. +.TP +.B \-c, --min-cols +Crop the animation from the left. +.TP +.B \-C, --max-cols +Crop the animation from the right. +.TP +.B \-W, --width +Crop the animation to the given width. +.TP +.B \-H, --height +Crop the animation to the given height. +.TP +.B \-h, --help +Show help message and exit. +.SH HOMEPAGE +.PP +.B Homepage: +http://miku.acm.uiuc.edu/ +.PP +.B Repository: +https://github.com/klange/nyancat +.SH AUTHOR +nyancat was written by Kevin Lange. +.PP +This manual page was written by Jonathan McCrohan , +for the Debian project (and may be used by others). -- cgit v1.2.3