We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7bae532 commit 7d0acc9Copy full SHA for 7d0acc9
meson.build
@@ -1,7 +1,7 @@
1
project(
2
'linux-steam-integration',
3
['c'],
4
- version: '0.3',
+ version: '0.4',
5
license: [
6
'LGPL-2.1',
7
],
mkrelease.sh
@@ -0,0 +1,14 @@
+#!/bin/bash
+set -e
+
+git submodule init
+git submodule update
+# 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