1
0
mirror of https://github.com/gryf/debian-pkgs.git synced 2026-02-07 14:45:46 +01:00

Added libxpm to deps from wmamixer

This commit is contained in:
2018-05-16 22:13:40 +02:00
parent 09506c067e
commit 678b000448

View File

@@ -2,10 +2,12 @@
rm -fr _wmamixer wmamixer wmamixer-0.1 wmamixer-0.1.deb
dpkg -l |grep -q libasound2-dev
if [ $? != 0 ]; then
apt-get -y install libasound2-dev
fi
for i in libxpm-dev libasound2-dev; do
dpkg -l |grep -q $i
if [ $? != 0 ]; then
apt-get -y install $i
fi
done
JOBS=-j$(($(nproc) + 1))