mirror of
https://github.com/danbulant/nekofetch
synced 2026-07-07 20:10:43 +00:00
Allow specifying a DESTDIR
This commit is contained in:
parent
de10710c32
commit
83664a30a0
1 changed files with 3 additions and 3 deletions
6
Makefile
6
Makefile
|
|
@ -17,13 +17,13 @@ options:
|
||||||
@echo "VERSION: $(VERSION)"
|
@echo "VERSION: $(VERSION)"
|
||||||
|
|
||||||
install:
|
install:
|
||||||
mkdir -p $(PREFIX)/bin
|
mkdir -p $(DESTDIR)$(PREFIX)/bin
|
||||||
install -m 0755 nekofetch $(PREFIX)/bin/nekofetch
|
install -m 0755 nekofetch $(DESTDIR)$(PREFIX)/bin/nekofetch
|
||||||
@echo "You may need to install jq, jp2a, and neofetch"
|
@echo "You may need to install jq, jp2a, and neofetch"
|
||||||
@echo "imagemagick is also required to use the kitty image backend"
|
@echo "imagemagick is also required to use the kitty image backend"
|
||||||
|
|
||||||
uninstall:
|
uninstall:
|
||||||
rm -f $(PREFIX)/bin/nekofetch
|
rm -f $(DESTDIR)$(PREFIX)/bin/nekofetch
|
||||||
|
|
||||||
ioscontrol:
|
ioscontrol:
|
||||||
cp control.template ioscontrol
|
cp control.template ioscontrol
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue