-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add script to magically make a tarball, bump version to 0.4
Signed-off-by: Ikey Doherty <[email protected]>
- Loading branch information
1 parent
7bae532
commit 7d0acc9
Showing
2 changed files
with
15 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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', | ||
], | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |