mirror of
git://projects.qi-hardware.com/xburst-tools.git
synced 2024-11-01 12:33:07 +02:00
afa0c1b5f2
since the upstream file use bz2 as the package method. Signed-off-by: Xiangfu Liu <xiangfu@sharism.cc>
15 lines
362 B
Bash
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
|