Add build script
This commit is contained in:
parent
4aecc5f8cd
commit
397c52070a
50
build.sh
Executable file
50
build.sh
Executable file
@ -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
|
Loading…
x
Reference in New Issue
Block a user