You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
494 B
16 lines
494 B
4 years ago
|
#!/usr/bin/env bash
|
||
|
# Where I keep the sources
|
||
|
BASEDIR=~/sources/gmnd
|
||
|
# Version of gmnd
|
||
|
VERSION=$(awk '/.*SERVER_SOFTWARE/ {print $4}' ${BASEDIR}/gmnd/__init__.py|sed "s/'//" )
|
||
|
|
||
|
# Change to source dir
|
||
|
cd ${BASEDIR}
|
||
|
|
||
|
# Build deb
|
||
|
dpkg-buildpackage -us -uc
|
||
|
|
||
|
# Add binary and source to repo
|
||
|
reprepro --basedir ${BASEDIR}/debian includedeb unstable ${BASEDIR}/gmnd_${VERSION}_all.deb
|
||
|
reprepro --basedir ${BASEDIR}/debian -S net --priority optional includedsc unstable ${BASEDIR}/gmnd_${VERSION}.dsc
|