blob: 7ac740d998d1987fc83b643945376ba659a61d61 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/sh
set -ex
: ${PREFIX=/usr} ${ETCDIR:=/etc}
for i in swayconfig wob.ini; do
install -Dm 644 swob-$i "$DESTDIR$ETCDIR"/swob/$i
done
install -d "$DESTDIR$ETCDIR"/sway/config.d/
ln -s ../../swob/swayconfig "$DESTDIR$ETCDIR"/sway/config.d/swob-swayconfig
install -Dt "$DESTDIR$PREFIX"/bin swob.sh
install -m644 -Dt "$DESTDIR$PREFIX"/share/doc/swob README.md dwl-config.h.patch
install -m644 -Dt "$DESTDIR$PREFIX"/share/licenses/swob LICENSE
|