#!/bin/bash
#
# psource
#
# © 2011 - 2015 Alf Gaida <agaida@siduction.org>
#

if [ -d ${@} ]; then
  cd ./${@}
  debuild -S -us -uc
  cd ..
fi


