1
0
mirror of git://projects.qi-hardware.com/xburst-tools.git synced 2024-11-01 10:15:19 +02:00
xburst-tools/debian/get-orig-source.sh
Xiangfu Liu afa0c1b5f2 use the original bz2 file as the orig.tar.bz2, do not repackage it,
since the upstream file use bz2 as the package method.

Signed-off-by: Xiangfu Liu <xiangfu@sharism.cc>
2010-09-29 10:51:31 +08:00

15 lines
362 B
Bash

#!/bin/sh
# Build a tarball from the latest upstream version, with a nice
# version number.
#
# Requires tar.
set -e
: ${VERSION=201007}
[ -f xburst-tools_${VERSION}.tar.bz2 ] || \
wget http://projects.qi-hardware.com/media/upload/xburst-tools/files/xburst-tools_${VERSION}.tar.bz2
mv xburst-tools_${VERSION}.tar.bz2 ../xburst-tools_${VERSION}.orig.tar.bz2