Tamarin/hooks/prebuild/debian/install-build-depends

10 lines
217 B
Plaintext
Raw Normal View History

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
echo "Installing build dependencies..."
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