astro

a POSIX shell compatible gemini client (mirror of https://github.com/blmayer/astro)
git clone https://git.clttr.info/astro.git
Log (Feed) | Files | Refs (Tags) | README | LICENSE

commit 614bcb1bf4aad3d81744122db9d46b62f961db0f
parent 631ce7063b1d748173d467115dc820fd19242728
Author: Brian Mayer <bleemayer@gmail.com>
Date:   Sat,  2 Sep 2023 23:32:49 -0300

Merge pull request #50 from rnwgnr/patch-1

Update Makefile
Diffstat:
MMakefile | 11++++++++---
1 file changed, 8 insertions(+), 3 deletions(-)

diff --git a/Makefile b/Makefile @@ -3,13 +3,18 @@ PREFIX ?= ~/.local BINDIR?=$(PREFIX)/bin DOCDIR?=$(PREFIX)/share/doc/astro +MANDIR?=$(PREFIX)/share/man/man1 +LICENSEDIR?=$(PREFIX)/share/doc/astro install: - mkdir -p $(BINDIR) $(DOCDIR) + mkdir -p $(BINDIR) $(DOCDIR) $(LICENSEDIR) $(MANDIR) install -m +rx astro -t $(BINDIR) - install -m +r README.md -t $(DOCDIR) - install -m +r LICENSE -t $(DOCDIR) + install -m +r README.md CONTRIBUTING.md -t $(DOCDIR) + install -m +r LICENSE -t $(LICENSEDIR) + install -m +r astro.en.1 $(MANDIR)/astro.1 uninstall: rm $(BINDIR)/astro rm -rf $(DOCDIR) + rm -rf $(LICENSEDIR) + rm -f $(MANDIR)/astro.1