Skip to content

Commit

Permalink
Add script to magically make a tarball, bump version to 0.4
Browse files Browse the repository at this point in the history
Signed-off-by: Ikey Doherty <[email protected]>
  • Loading branch information
ikeydoherty committed Oct 10, 2017
1 parent 7bae532 commit 7d0acc9
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
project(
'linux-steam-integration',
['c'],
version: '0.3',
version: '0.4',
license: [
'LGPL-2.1',
],
Expand Down
14 changes: 14 additions & 0 deletions mkrelease.sh
Original file line number Diff line number Diff line change
@@ -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"

0 comments on commit 7d0acc9

Please sign in to comment.