#!/bin/sh set -ex # Remove the -b -uc -us options once you have your gpg key # registered with the ubuntu keyserver # and have added changelog entries identifying yourself as # the most recent change's author. sudo apt install build-essential devscripts equivs cd xml-security-c-2.0.1 rm -f *build-deps*deb mk-build-deps sudo dpkg -i *build-deps*deb || sudo apt install -y -f rm -f *build-deps*deb debuild -b -uc -us cd .. sudo dpkg -i libxml-sec*deb xml-sec*deb || sudo apt install -f cd xmltooling-3.0.2 rm -f *build-deps*deb mk-build-deps sudo dpkg -i *build-deps*deb || sudo apt install -y -f rm -f *build-deps*deb debuild -b -uc -us cd .. sudo dpkg -i libxmltoo*deb xmltoo*deb || sudo apt install -f cd opensaml2-3.0.0 rm -f *build-deps*deb mk-build-deps sudo dpkg -i *build-deps*deb || sudo apt install -y -f rm -f *build-deps*deb debuild -b -uc -us cd ..