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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
PREFIX ?= /usr
BIN ?= /bin
BINDIR ?= $(PREFIX)$(BIN)
DATA ?= /share
DATADIR ?= $(PREFIX)$(DATA)
DOC ?= /share
DOCDIR ?= $(PREFIX)$(DOC)
LICENSEDIR ?= $(DATADIR)/licenses
PY3_SHEBANG = "/usr/bin/env python3"
COMMAND = xpybar
PKGNAME = xpybar
PLUGIN_PATH = $(DATADIR)/$(PKGNAME)
WARN = -Wall -Wextra -pedantic -Wdouble-promotion -Wformat=2 -Winit-self \
-Wmissing-include-dirs -Wtrampolines -Wfloat-equal -Wshadow \
-Wmissing-prototypes -Wmissing-declarations -Wredundant-decls \
-Wnested-externs -Winline -Wno-variadic-macros -Wsign-conversion \
-Wswitch-default -Wconversion -Wsync-nand -Wunsafe-loop-optimizations \
-Wcast-align -Wstrict-overflow -Wdeclaration-after-statement -Wundef \
-Wbad-function-cast -Wcast-qual -Wwrite-strings -Wlogical-op \
-Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wpacked \
-Wvector-operation-performance -Wunsuffixed-float-constants \
-Wsuggest-attribute=const -Wsuggest-attribute=noreturn \
-Wsuggest-attribute=pure -Wsuggest-attribute=format -Wnormalized=nfkc
SRC = __main__ util x
PLUGINS = chase clock cpuifo cpuonline cpu df discstats ipaddress \
kmsg leapsec linereader loadavg lunar mem moc network \
pacman snmp snmp6 softirqs solar uname uptime users \
vmstat weather xdisplay xkb alsa dentrystate inodestate \
files hdparm
PLUGIN_EXAMPLES = chase clock cpu cpuinfo cpuonline df discstats \
ipaddress kmsg loadavg lunar mem moc network \
pacman uname uptime users xdisplay xkb alsa \
dentrystate inodestate files
EXAMPLES = clock mixed moderate plugin-test test xmonad
.PHONY: all
all: bin/xpybar bin/restricted-hdparm
bin/xpybar: obj/xpybar.zip
mkdir -p bin
echo "#!$(PY3_SHEBANG)" > $@
cat $< >> $@
chmod a+x $@
obj/xpybar.zip: $(foreach F,$(SRC),obj/$(F).py)
cd obj && zip ../$@ $(foreach F,$(SRC),$(F).py)
obj/%.py: src/%.py
mkdir -p obj
cp $< $@
sed -i "s:PLUGIN_PATH = None:PLUGIN_PATH = '$(PLUGIN_PATH)':g" $@
bin/restricted-hdparm: obj/restricted-hdparm.o
$(CC) -std=c89 -Ofast $(WARN) -o $@ $^
obj/%.o: src/%.c
$(CC) -std=c89 -Ofast $(WARN) -c -o $@ $<
.PHONY: install
install: install-base
.PHONY: install-base
install-base: install-command install-license install-all-examples install-plugins
.PHONY: install-command
install-command: bin/xpybar bin/restricted-hdparm
install -dm755 -- "$(DESTDIR)$(BINDIR)"
install -m755 bin/xpybar -- "$(DESTDIR)$(BINDIR)/$(COMMAND)"
install -m755 bin/restricted-hdparm -- "$(DESTDIR)$(BINDIR)/restricted-hdparm"
.PHONY: install-license
install-license: COPYING LICENSE.gpl3 LICENSE.agpl3
install -dm755 -- "$(DESTDIR)$(LICENSEDIR)/$(PKGNAME)"
install -m644 $^ -- "$(DESTDIR)$(LICENSEDIR)/$(PKGNAME)"
.PHONY: install-all-examples
install-all-examples: install-examples install-plugin-examples
.PHONY: install-examples
install-examples: $(foreach F,$(EXAMPLES),examples/$(F))
install -dm755 -- "$(DESTDIR)$(DOCDIR)/$(PKGNAME)/examples"
install -m644 $^ -- "$(DESTDIR)$(DOCDIR)/$(PKGNAME)/examples"
.PHONY: install-plugin-examples
install-plugin-examples: $(foreach F,$(PLUGIN_EXAMPLES),examples/plugins/$(F))
install -dm755 -- "$(DESTDIR)$(DOCDIR)/$(PKGNAME)/examples/plugins"
install -m644 $^ -- "$(DESTDIR)$(DOCDIR)/$(PKGNAME)/examples/plugins"
.PHONY: install-plugins
install-plugins: $(foreach F,$(PLUGINS),src/plugins/$(F).py)
install -dm755 -- "$(DESTDIR)$(DATADIR)/$(PKGNAME)/plugins"
install -m644 $^ -- "$(DESTDIR)$(DATADIR)/$(PKGNAME)/plugins"
.PHONY: uninstall
uninstall:
-rm -- "$(DESTDIR)$(BINDIR)/$(COMMAND)"
-rm -- "$(DESTDIR)$(BINDIR)/restricted-hdparm"
-rm -- "$(DESTDIR)$(LICENSEDIR)/$(PKGNAME)/COPYING"
-rm -- "$(DESTDIR)$(LICENSEDIR)/$(PKGNAME)/LICENSE.gpl3"
-rm -- "$(DESTDIR)$(LICENSEDIR)/$(PKGNAME)/LICENSE.agpl3"
-rmdir -- "$(DESTDIR)$(LICENSEDIR)/$(PKGNAME)"
-rm -- $(foreach F,$(PLUGIN_EXAMPLES),"$(DESTDIR)$(DOCDIR)/$(PKGNAME)/examples/plugins/$(F)")
-rmdir -- "$(DESTDIR)$(DOCDIR)/$(PKGNAME)/examples/plugins"
-rm -- $(foreach F,$(EXAMPLES),"$(DESTDIR)$(DOCDIR)/$(PKGNAME)/examples/$(F)")
-rmdir -- "$(DESTDIR)$(DOCDIR)/$(PKGNAME)/examples"
-rmdir -- "$(DESTDIR)$(DOCDIR)/$(PKGNAME)"
-rm -- $(foreach F,$(PLUGINS),"$(DESTDIR)$(DATADIR)/$(PKGNAME)/plugins/$(F)")
-rmdir -- "$(DESTDIR)$(DATADIR)/$(PKGNAME)/plugins"
-rmdir -- "$(DESTDIR)$(DATADIR)/$(PKGNAME)"
.PHONY: clean
clean:
-rm -r obj bin
|