1
0
mirror of git://projects.qi-hardware.com/xburst-tools.git synced 2024-11-01 16:25:20 +02:00
xburst-tools/debian/get-orig-source.sh
Xiangfu Liu 70466eec2a this fix the uscan --report-status error
Signed-off-by: Xiangfu Liu <xiangfu@sharism.cc>
2010-09-25 22:41:02 +08:00

22 lines
647 B
Bash

#!/bin/sh
# Build a tarball from the latest upstream version, with a nice
# version number.
#
# Requires tar.
set -e
: ${VERSION=201007}
mkdir -p debian-orig-source
trap 'rm -fr debian-orig-source xburst-tools_${VERSION}.tar.bz2 || exit 1' EXIT INT TERM
[ -f xburst-tools_${VERSION}.tar.bz2 ] || \
wget http://projects.qi-hardware.com/media/upload/xburst-tools/files/xburst-tools_${VERSION}.tar.bz2
tar -jxf xburst-tools_${VERSION}.tar.bz2 -C debian-orig-source
rm -rf debian-orig-source/debian
cd debian-orig-source && tar -czf ../../xburst-tools_${VERSION}.orig.tar.gz . && cd ..
rm -fr debian-orig-source xburst-tools_${VERSION}.tar.bz2