Skip to content

Commit

Permalink
Change install method for bpkg, enhanced package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
pepa65 committed Mar 13, 2017
1 parent b61acbe commit bd101aa
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 17 deletions.
8 changes: 0 additions & 8 deletions Makefile

This file was deleted.

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

### Bash client for tldr: community driven man-by-example
**A fully-functional [bash](https://tiswww.case.edu/php/chet/bash/bashtop.html)
client for the [tldr](https://github.com/rprieto/tldr/) project, providing
client for the [tldr](https://github.com/tldr-pages/tldr) project, providing
poignant examples of terminal commands.**

<img alt="tldr list screenshot" src="tldr-list.jpg" title="tldr list" width="600" />
Expand Down Expand Up @@ -86,6 +86,6 @@ Or even better, send a pull request!

Original client by Ray Lee http://github.com/raylee/tldr (MIT license)

Relicensed under GPL v3+
Relicensed under GPLv3+

<img alt="tldr new markdown screenshot" src="tldr-markdown-new.jpg" title="tldr new markdown" width="600" />
29 changes: 22 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,24 @@
{
"name": "tldr-bash-client",
"version": "0.3",
"description": "Bash client for tldr: community driven man-by-example",
"global": "true",
"install": "make install",
"uninstall": "make uninstall",
"scripts": [ "tldr" ]
"name": "tldr-bash-client",
"version": "0.3.0",
"description": "Bash client for tldr: community driven man-by-example",
"preferGlobal": true,
"global": "true",
"install": "install -c tldr ${PREFIX:-/usr/local}/bin",
"uninstall": "rm -f -- ${PREFIX:-/usr/local}/bin/tldr",
"bin": {
"tldr": "tldr"
},
"repository": {
"type": "git",
"url": "https://github.com/pepa65/tldr-bash-client"
},
"keywords": [ "color", "github", "docs", "client", "markdown", "bash", "man" ],
"author": "pepa65 <[email protected]>",
"license": "GPL-3.0+",
"bugs": {
"url": "https://github.com/pepa65/tldr-bash-client",
"email" : "[email protected]"
},
"homepage": "https://github.com/pepa65/tldr-bash-client"
}

0 comments on commit bd101aa

Please sign in to comment.