summaryrefslogtreecommitdiffstats
path: root/mycroft/python-xxhash/generate-xxhash-tarball.sh
blob: 755d5c4e8ef6d33b497f8017da18a32ca80a5eab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

VERSION=$1

wget https://github.com/ifduyue/python-xxhash/archive/v$VERSION/python-xxhash-$VERSION.tar.gz

tar -xzvf python-xxhash-$VERSION.tar.gz

rm -rf python-xxhash-$VERSION/deps

tar -czvf python-xxhash-$VERSION-no-bundling.tar.gz python-xxhash-$VERSION

# Cleaning
rm -rf python-xxhash-$VERSION/
rm -f python-xxhash-$VERSION.tar.gz