mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-06 08:26:50 +01:00
919db4488a
Signed-off-by: B. Watson <yalhcru@gmail.com> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
42 lines
1,013 B
Bash
42 lines
1,013 B
Bash
#!/bin/sh
|
|
|
|
# Create source tarball from 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=xcf-pixbuf-loader
|
|
CLONE_URL=https://github.com/StephaneDelcroix/$PRGNAM.git
|
|
|
|
set -e
|
|
|
|
GITDIR=$( mktemp -dt $PRGNAM.git.XXXXXX )
|
|
rm -rf $GITDIR
|
|
git clone $CLONE_URL $GITDIR
|
|
|
|
CWD="$( pwd )"
|
|
cd $GITDIR
|
|
|
|
VERSION=$( git log --date=format:%Y%m%d --pretty=format:%cd.%h -n1 )
|
|
|
|
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="https://slackware.uk/~urchlay/src/$PRGNAM-$VERSION.tar.xz"
|
|
MD5SUM="$( md5sum $PRGNAM-$VERSION.tar.xz | cut -d' ' -f1 )"
|
|
|
|
Don't forget to upload the new source!
|
|
EOF
|