polybar/common/travis/install_xcb_xrm.sh

10 lines
254 B
Bash
Raw Normal View History

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