From 397c52070ab9228defeb3ebd53215ee0de8351cd Mon Sep 17 00:00:00 2001 From: Simon Marsh Date: Sun, 10 Jan 2021 13:46:51 +0000 Subject: [PATCH] Add build script --- build.sh | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100755 build.sh diff --git a/build.sh b/build.sh new file mode 100755 index 00000000..99523c47 --- /dev/null +++ b/build.sh @@ -0,0 +1,50 @@ +#!/bin/bash -e +########################################################################## + +version='2.0.7' + +# configure + +if [ ! -f configure ] +then + autoreconf +fi + +./configure \ + --prefix=/usr \ + --sysconfdir=/etc/bird \ + --localstatedir=/var + +# make + +make -j4 + +# create debian package + +date=$(date +%y%m%d) + +echo "bird-$version for burble.dn42" > description-pak +sudo checkinstall \ + --default \ + --type='debian' --install=no \ + --pkgname='bird' \ + --pkgversion="$version" \ + --pkgrelease="burble-$date" \ + --maintainer="simon@burble.com" \ + --provides='bird' \ + --strip \ + --backup=no +# reset perms +sudo chown simon.simon *.deb + +# upload + +pkg="bird_${version}-burble-${date}_amd64.deb" +dstdir='minio/artifacts/bird' +dst="${dstdir}/${date}/${pkg}" + +mc cp "$pkg" "$dst" +mc cp "$dst" "${dstdir}/current/bird_${version}-burble_amd64.deb" + +########################################################################## +# end of file