You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
325 B
15 lines
325 B
6 years ago
|
#!/bin/sh
|
||
|
|
||
|
#if [ -d taglib ]; then
|
||
|
# echo "Remove the \"taglib\" directory first !"
|
||
|
# exit 1
|
||
|
#fi
|
||
|
|
||
|
SNAP="$(date +%Y%m%d)git"
|
||
|
VERSION=1.8
|
||
|
|
||
|
git clone https://github.com/taglib/taglib.git
|
||
|
pushd taglib >& /dev/null
|
||
|
git archive --prefix=taglib-${VERSION}/ master | gzip -9 > ../taglib-${VERSION}-${SNAP}.tar.gz
|
||
|
popd >& /dev/null
|