2015-08-04 23:58:43 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2017-02-09 21:53:24 +01:00
|
|
|
cd src
|
|
|
|
|
2015-08-04 23:58:43 +02:00
|
|
|
if [ -f debian/control ]; then
|
2015-10-22 16:55:54 +02:00
|
|
|
echo "Installing build dependencies..."
|
2016-02-11 14:43:37 +01:00
|
|
|
apt-get update
|
2015-09-23 21:21:30 +02:00
|
|
|
mk-build-deps -r -t "apt-get --force-yes -y --no-install-recommends" --install debian/control
|
2015-08-04 23:58:43 +02:00
|
|
|
fi
|