taglib/taglib-snapshot.sh
Troy Dawson cea4aa31f2 RHEL 9.0.0 Alpha bootstrap
The content of this branch was automatically imported from Fedora ELN
with the following as its source:
https://src.fedoraproject.org/rpms/taglib#129d36970c893cc54f7f63083a0bb21599afc8bd
2020-10-15 10:21:01 -07:00

15 lines
325 B
Bash
Executable File

#!/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