Skip to content

Commit

Permalink
Misc: Add back Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
Muhammad Herdiansyah committed Jul 11, 2017
1 parent ca79558 commit dcb006f
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 41 deletions.
26 changes: 23 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,27 @@
PREFIX = /usr
PREFIX ?= /usr
SYSCONFDIR ?= /etc

all:
@echo Run 'make install' to install Neofetch.
@echo Run \'make install\' to install Neofetch.

install:
DESTDIR="${DESTDIR}" PREFIX="$(PREFIX)" ./install.sh
@echo 'Making directories...'
@mkdir -p $(DESTDIR)$(PREFIX)/bin
@mkdir -p $(DESTDIR)$(PREFIX)/share/neofetch/ascii/distro
@mkdir -p $(DESTDIR)$(PREFIX)/share/man/man1
@mkdir -p $(DESTDIR)$(SYSCONFDIR)/neofetch

@echo 'Installing binaries...'
@sed "s|ASCIIDIR|$(PREFIX)/share/neofetch/ascii/distro|g;s|CONFDIR|$(SYSCONFDIR)/neofetch|g" < neofetch > $(DESTDIR)$(PREFIX)/bin/neofetch

@echo 'Installing ASCII files, man page and config file...'
@cp -p ascii/distro/* $(DESTDIR)$(PREFIX)/share/neofetch/ascii/distro
@cp -p neofetch.1 $(DESTDIR)$(PREFIX)/share/man/man1
@cp -p config/config.conf $(DESTDIR)$(SYSCONFDIR)/neofetch/config.conf

uninstall:
@echo 'Removing files...'
@rm -rf $(DESTDIR)$(PREFIX)/bin/neofetch
@rm -rf $(DESTDIR)$(PREFIX)/share/man/man1/neofetch.1*
@rm -rf $(DESTDIR)$(PREFIX)/share/neofetch
@rm -rf $(DESTDIR)$(SYSCONFDIR)/neofetch
38 changes: 0 additions & 38 deletions install.sh

This file was deleted.

0 comments on commit dcb006f

Please sign in to comment.