mirror of
https://gitlab.com/EternalWanderer/sheet-parser.git
synced 2024-11-28 21:13:51 +01:00
Manpage update
This commit is contained in:
parent
0d6ad6267e
commit
85eb9d3470
12
APKBUILD
12
APKBUILD
|
@ -1,8 +1,8 @@
|
||||||
# Contributor: Marty Sluijtman <marty.wanderer@disroot.org>
|
# Contributor: Marty Sluijtman <marty.wanderer@disroot.org>
|
||||||
# Maintainer: Marty Sluijtman <marty.wanderer@disroot.org>
|
# Maintainer: Marty Sluijtman <marty.wanderer@disroot.org>
|
||||||
pkgname=sheet-parser
|
pkgname=sheet-parser
|
||||||
pkgver=0.4
|
pkgver=0.5
|
||||||
pkgrel=0
|
pkgrel=1
|
||||||
pkgdesc="A little D&D character sheet parser written in go"
|
pkgdesc="A little D&D character sheet parser written in go"
|
||||||
url="https://gitlab.com/EternalWanderer/sheet-parser"
|
url="https://gitlab.com/EternalWanderer/sheet-parser"
|
||||||
arch="all"
|
arch="all"
|
||||||
|
@ -24,11 +24,11 @@ build() {
|
||||||
package() {
|
package() {
|
||||||
make install PREFIX=/usr DESTDIR="$pkgdir"
|
make install PREFIX=/usr DESTDIR="$pkgdir"
|
||||||
install -Dm 644 zsh.completion "$pkgdir"/usr/share/zsh/site-functions/_$pkgname
|
install -Dm 644 zsh.completion "$pkgdir"/usr/share/zsh/site-functions/_$pkgname
|
||||||
install -Dm 644 example.json "$pkgdir"/etc/sheet-parser/example.json
|
install -Dm 644 example.json "$pkgdir"/etc/"$pkgname"/example.json
|
||||||
}
|
}
|
||||||
|
|
||||||
sha512sums="
|
sha512sums="
|
||||||
b4dadf3252bfb01baad65823149ec379bd50efc02ffe68dab9b9d905fb928425d66653cf33f0a672916c143e74bba2b473f1d4f215976e381f483e59620b0dae sheet-parser-0.4.tar.gz
|
07e04bd5de57ef3c583184eb09fe0f492b07c92c49c6c92baa559e0305aa4cfd15a9e29e14813ed907cc3e7f24e30477848a9e7239e9fe5b241e740abf9a4d3a sheet-parser-0.5.tar.gz
|
||||||
c1800a72d8d229d46a7ea2dffb83f97c7edaf773a9a875a2ae10b449ae84ab854b80eac05a62002f6a686bb8b014c9b1bc8e2359286b2edccda4d90227a473e5 zsh.completion
|
53138a1301608551e5ff4e42bcf376a5e241705e2c9e1da17e06f099e54dc116d62cbd1f95f096f7da826eb5c193e23975d36009f8c49ebb328be05d2c2deffa zsh.completion
|
||||||
b2c696f4dec885014fb39a313f0cf80798aa80ad119c9fc4d9b10b7d80d62df603852142115aa9f925fc49bc865e6fafd37c0fe143bcde406bf380ff96655591 example.json
|
779ad32589bdc38b441352049445f55d21a2544eef00abf51894c901ca0fa3cc196fc50c2e0c350f5d1f9d65e0e6d2e1a9ef06a8fcce3d8699122635e239510d example.json
|
||||||
"
|
"
|
||||||
|
|
2
Makefile
2
Makefile
|
@ -1,4 +1,4 @@
|
||||||
VERSION = 0.4
|
VERSION = 0.5
|
||||||
PREFIX = /usr/local
|
PREFIX = /usr/local
|
||||||
MANPAGE = sheet-parser.1
|
MANPAGE = sheet-parser.1
|
||||||
MANPREFIX = $(PREFIX)/share/man
|
MANPREFIX = $(PREFIX)/share/man
|
||||||
|
|
|
@ -10,6 +10,8 @@ sheet-parser - D&D sheet parser utility written in go
|
||||||
|
|
||||||
*sheet-parser* [*-t*] [*--trivia*]
|
*sheet-parser* [*-t*] [*--trivia*]
|
||||||
|
|
||||||
|
*sheet-parser* [*--feats*]
|
||||||
|
|
||||||
*sheet-parser* [*-v*] [*--verbose*]
|
*sheet-parser* [*-v*] [*--verbose*]
|
||||||
|
|
||||||
*sheet-parser* [*--advantage*] [*--disadvantage*]
|
*sheet-parser* [*--advantage*] [*--disadvantage*]
|
||||||
|
@ -69,6 +71,9 @@ This thing makes use of some of the functionality of dice-roller, mainly the way
|
||||||
Roll a check with 2d20 and take the lowest number; to be used in
|
Roll a check with 2d20 and take the lowest number; to be used in
|
||||||
conjunction with *--save* *--skill* or *--stat*
|
conjunction with *--save* *--skill* or *--stat*
|
||||||
|
|
||||||
|
*--feats*
|
||||||
|
List character feats
|
||||||
|
|
||||||
# CONFIGURATION
|
# CONFIGURATION
|
||||||
|
|
||||||
You can change the default character sheet by setting *$CHARSHEET* to point to a
|
You can change the default character sheet by setting *$CHARSHEET* to point to a
|
||||||
|
|
Loading…
Reference in a new issue