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
512 B
16 lines
512 B
#!/usr/bin/env bash
|
|
# Where I keep the sources
|
|
BASEDIR=~/sources
|
|
# Version of wireguide
|
|
VERSION=$(awk -F '"' '/self.version =/ {print $2}' ${BASEDIR}/wireguide/src/wireguide)
|
|
|
|
# Change to source dir
|
|
cd ${BASEDIR}/wireguide
|
|
|
|
# Build deb
|
|
dpkg-buildpackage -us -uc
|
|
|
|
# Add binary and source to repo
|
|
reprepro --basedir ${BASEDIR}/debian includedeb unstable ${BASEDIR}/wireguide_${VERSION}_all.deb
|
|
reprepro --basedir ${BASEDIR}/debian -S net --priority optional includedsc unstable ${BASEDIR}/wireguide_${VERSION}.dsc
|