mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-11-09 12:48:43 +00:00
d8033f2238
Unless you object, I'll announce it today (9.5.) at noon.
19 lines
426 B
Bash
Executable File
19 lines
426 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Generate BIRD Distribution Archive
|
|
# (c) 2000 Martin Mares <mj@ucw.cz>
|
|
#
|
|
|
|
[ -f Makefile ] && make distclean
|
|
autoconf
|
|
VERSION=`sed <sysdep/config.h '/BIRD_VERSION/!d;s/^.*"\(.*\)"$/\1/'`
|
|
REL=bird-$VERSION
|
|
echo Building $REL
|
|
rm -rf dist
|
|
mkdir -p dist/$REL
|
|
cp -a . dist/$REL
|
|
rm -rf `find dist/$REL -name CVS -o -name tmp` dist/$REL/{dist,misc,rfc}
|
|
cd dist ; tar czvvf /tmp/$REL.tar.gz $REL
|
|
rm -rf dist
|
|
echo Done.
|