this repo has no description
1#!/bin/sh
2set -e
3
4DATE=$(date +%Y%m%d)
5rm -f debian/changelog
6DISTRO=${DEB_DISTRO:-"$(lsb_release -cs)"}
7VERSION=0.1.${DATE}~${DISTRO}
8EDITOR=true NAME="Darling build server" EMAIL=${DEB_EMAIL:-noreply@darlinghq.org} dch -u low -v ${VERSION} --create --distribution ${DISTRO} --package darling "Daily build"
9
10ARG='-S'
11if [ -e "../darling_${VERSION}.orig.tar.xz" ]; then
12rm ../darling_${VERSION}.orig.tar.xz
13fi
14tar -cJf ../darling_${VERSION}.orig.tar.xz .
15
16debuild --no-lintian -us -uc -S ${ARG}