Add script to magically make a tarball, bump version to 0.4

Signed-off-by: Ikey Doherty <ikey@solus-project.com>
This commit is contained in:
Ikey Doherty
2017-10-11 00:32:29 +01:00
parent 7bae532d85
commit 197e1b9b3a
2 changed files with 15 additions and 1 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
project(
'linux-steam-integration',
['c'],
version: '0.3',
version: '0.4',
license: [
'LGPL-2.1',
],
Executable
+14
View File
@@ -0,0 +1,14 @@
#!/bin/bash
set -e
git submodule init
git submodule update
# Script for ikey because he went with meson. *shrug*
VERSION="0.4"
NAME="linux-steam-integration"
git-archive-all.sh --format tar --prefix ${NAME}-${VERSION}/ --verbose -t HEAD ${NAME}-${VERSION}.tar
xz -9 "${NAME}-${VERSION}.tar"
gpg --armor --detach-sign "${NAME}-${VERSION}.tar.xz"
gpg --verify "${NAME}-${VERSION}.tar.xz.asc"