`cargo install` or some way to install the man page
Open
- Dominant language
- Rust
- Stars
- 7
- Forks
- 1
- PR merge metrics
- No merged PRs in 30d
Description
I had to manually run `install -m 644 rgbobj.1 /usr/local/share/man/man1`.
An rgbds-style Makefile could suffice:
```make
.PHONY: install
Q := @
PREFIX := /usr/local
mandir := ${PREFIX}/share/man
MANMODE := 644
install:
$Qcargo install
$Qinstall -m ${MANMODE} rgbobj.1 ${DESTDIR}${mandir}/man1/
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.