blob: c9949063606c7b7af3400b8e80ece107e1ace96b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/usr/bin/env bash
set -e
VERSION="${1:-master}"
RAW_BASE="https://raw.githubusercontent.com/playit-cloud/playit-agent/${VERSION}"
curl -L -o PKGBUILD "${RAW_BASE}/arch/build/PKGBUILD"
curl -L -o playit.install "${RAW_BASE}/arch/build/playit.install"
updpkgsums
makepkg --printsrcinfo > .SRCINFO
git clean -fdx
|