mirror of
https://github.com/Raymo111/i3lock-color.git
synced 2024-11-11 13:50:52 -05:00
11 lines
190 B
Bash
Executable file
11 lines
190 B
Bash
Executable file
#!/bin/bash
|
|
autoreconf -fiv
|
|
|
|
BUILD_DIR=build/
|
|
rm -rf $BUILD_DIR
|
|
mkdir -vp $BUILD_DIR
|
|
cd $BUILD_DIR || { echo "cd $BUILD_DIR"; exit 127; }
|
|
|
|
../configure --prefix=/usr --sysconfdir=/etc
|
|
|
|
make
|