Added matterlinux stuff

This commit is contained in:
ngn
2023-12-23 19:39:47 +03:00
commit 830c89432c
5 changed files with 12074 additions and 0 deletions

13
Makefile Normal file

@ -0,0 +1,13 @@
PREFIX = /usr
MANDIR = $(PREFIX)/share/man
install:
@mkdir -p $(DESTDIR)$(PREFIX)/bin
@mkdir -p $(DESTDIR)$(MANDIR)/man1
@cp -p neofetch $(DESTDIR)$(PREFIX)/bin/neofetch
@cp -p neofetch.1 $(DESTDIR)$(MANDIR)/man1
@chmod 755 $(DESTDIR)$(PREFIX)/bin/neofetch
uninstall:
@rm -rf $(DESTDIR)$(PREFIX)/bin/neofetch
@rm -rf $(DESTDIR)$(MANDIR)/man1/neofetch.1*