Skip to content

Commit 7d0acc9

Browse files
committed
Add script to magically make a tarball, bump version to 0.4
Signed-off-by: Ikey Doherty <ikey@solus-project.com>
1 parent 7bae532 commit 7d0acc9

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
project(
22
'linux-steam-integration',
33
['c'],
4-
version: '0.3',
4+
version: '0.4',
55
license: [
66
'LGPL-2.1',
77
],

mkrelease.sh

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#!/bin/bash
2+
set -e
3+
4+
git submodule init
5+
git submodule update
6+
7+
# Script for ikey because he went with meson. *shrug*
8+
VERSION="0.4"
9+
NAME="linux-steam-integration"
10+
git-archive-all.sh --format tar --prefix ${NAME}-${VERSION}/ --verbose -t HEAD ${NAME}-${VERSION}.tar
11+
xz -9 "${NAME}-${VERSION}.tar"
12+
13+
gpg --armor --detach-sign "${NAME}-${VERSION}.tar.xz"
14+
gpg --verify "${NAME}-${VERSION}.tar.xz.asc"

0 commit comments

Comments
 (0)