WIP génération tarball sources

This commit is contained in:
2015-09-23 17:42:08 +02:00
parent 0d5e391e97
commit 5bd63ab0ef
6 changed files with 18 additions and 3 deletions

View File

@ -0,0 +1,10 @@
#!/bin/bash
source "${TAMARIN_UTIL}"
project_name=$(get_opt project_name)
src_tarball="../${project_name}_${package_version}.orig.tar.gz"
info "Creating sources tarball ${src_tarball}"
tar -czf "${src_tarball}" .

View File

@ -0,0 +1,8 @@
#!/bin/bash
source "${TAMARIN_UTIL}"
if [ -f debian/control ]; then
info "Installing build dependencies..."
mk-build-deps -t "apt-get --force-yes -y" --install debian/control
fi