Skip to content
This repository has been archived by the owner on May 22, 2019. It is now read-only.

Commit

Permalink
Fix install command args
Browse files Browse the repository at this point in the history
  • Loading branch information
lots0logs committed Jun 25, 2017
1 parent 305c51f commit 44ed77b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,19 @@ all: install

install:
# Alerts Data
install -d dist/alerts.json $(DESTDIR)/var/lib/antergos-alerts/alerts.json
install -D dist/alerts.json $(DESTDIR)/var/lib/antergos-alerts/alerts.json

# ALPM Hook
install -d dist/antergos-alerts.hook $(DESTDIR)/usr/share/libalpm/hooks/antergos-alerts.hook
install -D dist/antergos-alerts.hook $(DESTDIR)/usr/share/libalpm/hooks/antergos-alerts.hook

# Logo for desktop notification
install -d dist/logo-square32.png $(DESTDIR)/usr/share/antergos/logo-square32.png
install -D dist/logo-square32.png $(DESTDIR)/usr/share/antergos/logo-square32.png

# Antergos Alerts
install -dm755 src/antergos-alerts.py $(DESTDIR)/usr/bin/antergos-alerts
install -Dm755 src/antergos-alerts.py $(DESTDIR)/usr/bin/antergos-alerts

# Utility script for desktop notifications
install -dm755 src/antergos-notify.sh $(DESTDIR)/usr/bin/antergos-notify
install -Dm755 src/antergos-notify.sh $(DESTDIR)/usr/bin/antergos-notify

uninstall:
# Alerts Data
Expand Down

0 comments on commit 44ed77b

Please sign in to comment.