#!/usr/bin/make -f
%:
	dh $@

# symlinks: one per org suite (every release codename and its -proposed
# lane, from org config), keeping the deb and the udeb identical.
override_dh_auto_install:
	for p in scutarius-debootstrap-scripts scutarius-debootstrap-scripts-udeb; do \
	  install -d debian/$$p/usr/share/debootstrap/scripts; \
	  for s in adam adam-proposed abel abel-proposed cain; do ln -s ceres debian/$$p/usr/share/debootstrap/scripts/$$s; done; \
	done
