1#!/bin/sh 2 3git clone https://github.com/google/android-cuttlefish.git 4cd android-cuttlefish 5 6for subdir in base frontend; do 7 cd ${subdir} 8 mk-build-deps --install --remove --tool='apt-get -o Debug::pkgProblemResolver=yes --no-install-recommends --yes' debian/control 9 dpkg-buildpackage -d -uc -us 10 cd - 11done 12