mirror of
https://github.com/clearlinux/linux-steam-integration.git
synced 2026-08-27 02:46:45 +00:00
003c462a77
Signed-off-by: Ikey Doherty <ikey@solus-project.com>
15 lines
408 B
Bash
Executable File
15 lines
408 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
git submodule init
|
|
git submodule update
|
|
|
|
# Script for ikey because he went with meson. *shrug*
|
|
VERSION="0.7"
|
|
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"
|