1
0
Fork 0
mirror of https://github.com/polybar/polybar.git synced 2024-10-27 05:23:39 -04:00
polybar/common/travis/install_xcb_xrm.sh

9 lines
239 B
Bash
Raw Normal View History

2017-01-19 21:30:03 -05: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-19 22:03:47 -05:00
cd xcb-util-xrm
./autogen.sh --prefix=/usr --libdir=/usr/lib
make
sudo make install
2017-01-19 21:30:03 -05:00
fi