blob: 7d1b83af6396800d8dacb04fa4256de94e0b68e2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
PREFIX = /usr/local
SCRIPTS = addressgrep \
battery-checknow \
battery-status \
brightness \
dmenu-bookmarks \
dmenu-dwm-sessionmanager \
dmenu-filepicker \
dmenu-mail-aliases \
dmenu-screenshot \
dmenu-unmount \
dmenu-urlselect \
dmenu-websearch \
dunst-toggle \
mail-checknow \
mail-compose \
notify-battery \
notify-time \
open-file \
open-stdin \
open-url \
popup-cal12 \
popup-cal3 \
popup-terminal \
secret \
sel \
sfeed-browser \
spawn \
templess \
togglemute \
translate \
trashrm \
trashempty \
urlgrep \
volume \
websearch \
xedit-filter \
xkboptions \
xplumb \
xprop-active-window-id \
xwallpaper-random-notify
all: install
install:
for s in ${SCRIPTS}; do\
cp -f $$s ${DESTDIR}${PREFIX}/bin ; \
chmod 755 ${DESTDIR}${PREFIX}/bin/$$s ; \
done
uninstall:
for s in ${SCRIPTS}; do rm -rf ${DESTDIR}${PREFIX}/bin/$$s ; done
.PHONY: all install uninstall
|