mirror of
https://github.com/Raymo111/i3lock-color.git
synced 2025-02-24 16:06:26 -05:00
11 lines
211 B
Bash
Executable file
11 lines
211 B
Bash
Executable file
#!/bin/bash
|
|
autoreconf -fiv
|
|
|
|
rm -rf build/
|
|
mkdir -p build && cd build/
|
|
|
|
../configure --prefix=/usr --sysconfdir=/etc
|
|
|
|
sudo make install
|
|
|
|
sudo install -Dm644 ../LICENSE "/usr/share/licenses/i3lock-color/LICENSE"
|