debian package

This commit is contained in:
Ben Charlton 2019-04-14 17:09:15 +01:00
parent 9c25aa142d
commit cf6664d4d3
13 changed files with 102 additions and 0 deletions

13
make-dist Executable file
View file

@ -0,0 +1,13 @@
#!/bin/sh -e
NAME=symbiosis-dns-mythic
VERSION=$(sed 's/.*(\([^)]*\)).*/\1/;1q' debian/changelog)
n="$NAME-$VERSION"
t="$n.tar.gz"
cd ..
rm -f $t
ln -s ${NAME} $n
tar cfzh $t $n
rm $n
cd ${NAME}