Merge pull request #10 from besser82/improvements
fixed malformated manpage
This commit is contained in:
commit
723738c706
8
Makefile
8
Makefile
|
@ -3,7 +3,7 @@ CC ?= gcc
|
|||
CFLAGS := -Wall -Wextra $(CFLAGS)
|
||||
LIBS = -lcurses
|
||||
|
||||
.PHONY: clean man man-nc
|
||||
.PHONY: clean man man-2048 man-2048nc
|
||||
|
||||
2048: src/2048.c
|
||||
$(CC) $(CFLAGS) $(LDFLAGS) $(LIBS) src/2048.c -o 2048
|
||||
|
@ -16,10 +16,12 @@ all: 2048
|
|||
clean:
|
||||
rm -f 2048 2048nc
|
||||
|
||||
man:
|
||||
man: man-2048 man-2048nc
|
||||
|
||||
man-2048:
|
||||
rm -f man/2048.1
|
||||
$(ASCIIDOC) -d manpage -f manpage man/2048.1.txt
|
||||
|
||||
man-nc:
|
||||
man-2048nc:
|
||||
rm -f man/2048nc.1
|
||||
$(ASCIIDOC) -d manpage -f manpage man/2048nc.1.txt
|
||||
|
|
28
README.md
28
README.md
|
@ -1,24 +1,35 @@
|
|||
#2048-cli
|
||||
|
||||
A cli version of the game [2048](https://github.com/gabrielecirulli/2048) for your Linux
|
||||
terminal.
|
||||
A cli version of the game [2048](https://github.com/gabrielecirulli/2048)
|
||||
for your Linux terminal.
|
||||
|
||||
#####2048_curses.c
|
||||
![Screenshot](http://i.imgur.com/QU7t5mH.png)
|
||||
|
||||
#####2048_no_curses.c
|
||||
![Screenshot](http://i.imgur.com/fwZEvdh.png)
|
||||
![Screenshot](http://i.imgur.com/fwZEvdh.png)
|
||||
|
||||
## Installation
|
||||
This requires the ncurses library to link against during compilation. It is available
|
||||
in most package managers. The program creates and uses a file name `.hs2048g` in the
|
||||
working directory. Any file with this name will be modified and replaced.
|
||||
This requires the ncurses library to link against during compilation.
|
||||
It is available in most package managers. The program creates and uses
|
||||
a file name `.hs2048g` in the working directory. Any file with this
|
||||
name will be modified and replaced.
|
||||
|
||||
You can easily install this on el >= 5 (CentOS, RedHat Enterprise Linux,
|
||||
Scientific Linux, Oracle) and Fedora >= 19 using the package-manager:
|
||||
|
||||
sudo yum install 2048-cli[-nocurses]
|
||||
|
||||
For el you will need to have the
|
||||
[EPEL-repository](https://fedoraproject.org/wiki/EPEL/FAQ#How_can_I_install_the_packages_from_the_EPEL_software_repository.3F)
|
||||
enabled.
|
||||
|
||||
### Get
|
||||
git clone https://github.com/Tiehuis/2048-cli.git
|
||||
make
|
||||
|
||||
### Run
|
||||
./2048
|
||||
./2048
|
||||
|
||||
## Options
|
||||
-s <size> Set the grid border length
|
||||
|
@ -28,4 +39,5 @@ working directory. Any file with this name will be modified and replaced.
|
|||
-C Disables color support (ncurses version only)
|
||||
|
||||
## License
|
||||
This code is licensed under the [MIT License](https://github.com/Tiehuis/2048-cli/blob/master/LICENSE).
|
||||
This code is licensed under the
|
||||
[MIT License](https://github.com/Tiehuis/2048-cli/blob/master/LICENSE).
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
.\" Title: \e20\e4\e8
|
||||
.\" Author: [see the "AUTHOR" section]
|
||||
.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
|
||||
.\" Date: 12/05/2014
|
||||
.\" Date: 12/13/2014
|
||||
.\" Manual: \ \&
|
||||
.\" Source: \ \&
|
||||
.\" Language: English
|
||||
.\"
|
||||
.TH "\E20\E4\E8" "1" "12/05/2014" "\ \&" "\ \&"
|
||||
.TH "\E20\E4\E8" "1" "12/13/2014" "\ \&" "\ \&"
|
||||
.\" -----------------------------------------------------------------
|
||||
.\" * Define some portability stuff
|
||||
.\" -----------------------------------------------------------------
|
||||
|
@ -70,7 +70,7 @@ Display usage information\&.
|
|||
.RE
|
||||
.SH "CONTROLS"
|
||||
.PP
|
||||
\fBhjkl or *wasd\fR or \fBarrow keys\fR
|
||||
\fBhjkl\fR or \fBwasd\fR or \fBarrow keys\fR
|
||||
.RS 4
|
||||
Movement
|
||||
.RE
|
||||
|
|
|
@ -36,7 +36,7 @@ OPTIONS
|
|||
|
||||
CONTROLS
|
||||
--------
|
||||
*hjkl or *wasd* or *arrow keys*::
|
||||
*hjkl* or *wasd* or *arrow keys*::
|
||||
Movement
|
||||
*q*::
|
||||
Quit the game.
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
.\" Title: \e20\e4\e8nc
|
||||
.\" Author: [see the "AUTHOR" section]
|
||||
.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
|
||||
.\" Date: 12/05/2014
|
||||
.\" Date: 12/13/2014
|
||||
.\" Manual: \ \&
|
||||
.\" Source: \ \&
|
||||
.\" Language: English
|
||||
.\"
|
||||
.TH "\E20\E4\E8NC" "1" "12/05/2014" "\ \&" "\ \&"
|
||||
.TH "\E20\E4\E8NC" "1" "12/13/2014" "\ \&" "\ \&"
|
||||
.\" -----------------------------------------------------------------
|
||||
.\" * Define some portability stuff
|
||||
.\" -----------------------------------------------------------------
|
||||
|
|
Loading…
Reference in New Issue
Block a user