diff options
author | B. Watson <yalhcru@gmail.com> | 2018-07-09 08:58:36 +0100 |
---|---|---|
committer | David Spencer <idlemoor@slackbuilds.org> | 2018-07-09 08:58:36 +0100 |
commit | 0101a2a22a15762b8fd9dbfaaa60655ea3da96c2 (patch) | |
tree | 1d8d0c9dafd319934905c3e3c73bd5403bde53bd /audio/unsf/git2targz.sh | |
parent | 3b015fee6acefa6c23ada34455b14febff0f921b (diff) | |
download | slackbuilds-0101a2a22a15762b8fd9dbfaaa60655ea3da96c2.tar.gz |
audio/unsf: Added (convert .sf2 files to GUS-type patches).
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'audio/unsf/git2targz.sh')
-rw-r--r-- | audio/unsf/git2targz.sh | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/audio/unsf/git2targz.sh b/audio/unsf/git2targz.sh new file mode 100644 index 0000000000..5ef1cd9110 --- /dev/null +++ b/audio/unsf/git2targz.sh @@ -0,0 +1,51 @@ +#!/bin/sh + +# Create source tarball from unsf git repo, with generated version +# number. We don't include the git history in the tarball. + +# Note that this script doesn't need to be run as root. It does +# need to be able to write to the current directory it's run from. + +PRGNAM=unsf +CLONE_URL=https://github.com/psi29a/$PRGNAM.git + +# Last released version. Normally we'd use a git tag for this, but +# upstream mentions a version 1.1 in their README... and there's no +# 1.1 release tag! +RELVER=1.1 + +set -e + +GITDIR=$( mktemp -dt $PRGNAM.git.XXXXXX ) +rm -rf $GITDIR +git clone $CLONE_URL $GITDIR + +CWD="$( pwd )" +cd $GITDIR + +# Extract date from last entry in git log. git has so many useful +# options that it's a PITA to find the one you need... +DATE=$( git log --date=format:%Y%m%d --pretty=format:%cd -n1 ) + +VERSION=${RELVER}+git$DATE + +rm -rf .git +find . -name .gitignore -print0 | xargs -0 rm -f + +cd "$CWD" +rm -rf $PRGNAM-$VERSION $PRGNAM-$VERSION.tar.xz +mv $GITDIR $PRGNAM-$VERSION +tar cvfJ $PRGNAM-$VERSION.tar.xz $PRGNAM-$VERSION + +cat <<EOF + +Archive created: $PRGNAM-$VERSION.tar.xz + +Update $PRGNAM.info with: + +VERSION="$VERSION" +DOWNLOAD="http://urchlay.naptime.net/~urchlay/src/$PRGNAM-$VERSION.tar.xz" +MD5SUM="$( md5sum $PRGNAM-$VERSION.tar.xz | cut -d' ' -f1 )" + +Don't forget to upload the new source! +EOF |