Added package definition & README.
This commit is contained in:
parent
ab8879aab7
commit
711e083563
2 changed files with 32 additions and 0 deletions
20
README.md
Normal file
20
README.md
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
Rosetta Code in C
|
||||||
|
=================
|
||||||
|
|
||||||
|
My implementation of various rosetta code exercises.
|
||||||
|
|
||||||
|
|
||||||
|
## Build
|
||||||
|
|
||||||
|
Make sure you have gcc installed.
|
||||||
|
Install clib package manager for C and run:
|
||||||
|
|
||||||
|
$ clib Install
|
||||||
|
|
||||||
|
|
||||||
|
## Use
|
||||||
|
|
||||||
|
Run
|
||||||
|
|
||||||
|
./bin/...
|
||||||
|
|
12
package.json
Normal file
12
package.json
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
{
|
||||||
|
"name": "rosetta-c",
|
||||||
|
"version": "0.1",
|
||||||
|
"repo": "glenux/rosetta-c",
|
||||||
|
"dependencies": {
|
||||||
|
"jlcordeiro/minunit": "*"
|
||||||
|
},
|
||||||
|
"description": "Rosetta code experiments in C",
|
||||||
|
"keywords": ["rosetta", "experiment"],
|
||||||
|
"license": "MIT",
|
||||||
|
"install": "make install"
|
||||||
|
}
|
Loading…
Reference in a new issue