mirror of
https://github.com/Raymo111/i3lock-color.git
synced 2024-11-11 13:50:52 -05:00
11 lines
219 B
Bash
11 lines
219 B
Bash
#!/bin/bash
|
|
autoreconf -fiv
|
|
|
|
rm -rf build/
|
|
mkdir -p build && cd build/
|
|
|
|
../configure --prefix=/usr --sysconfdir=/etc --disable-sanitizers
|
|
|
|
make install
|
|
|
|
install -Dm644 LICENSE "/usr/share/licenses/i3lock-color/LICENSE"
|