2017-01-20 02:30:03 +00:00
|
|
|
#!/bin/bash
|
|
|
|
if [ -z "$(ls -A "${DEPS_DIR}/xcb-util-xrm" 2>/dev/null)" ]; then
|
2017-01-24 13:02:54 +00:00
|
|
|
cd "${DEPS_DIR}" || exit 1
|
2017-01-20 02:30:03 +00:00
|
|
|
git clone --recursive https://github.com/Airblader/xcb-util-xrm
|
2017-01-24 13:02:54 +00:00
|
|
|
cd xcb-util-xrm || exit 1
|
2017-01-20 03:03:47 +00:00
|
|
|
./autogen.sh --prefix=/usr --libdir=/usr/lib
|
|
|
|
make
|
|
|
|
sudo make install
|
2017-01-20 02:30:03 +00:00
|
|
|
fi
|