Updated to 0.3.0 and added auto-bump to most recent tag.
This commit is contained in:
parent
c23787e40a
commit
4a64b91bbf
2 changed files with 10 additions and 6 deletions
4
.SRCINFO
4
.SRCINFO
|
@ -1,6 +1,6 @@
|
|||
pkgbase = moonlight-qt
|
||||
pkgdesc = GameStream client for PCs (Windows, Mac, and Linux)
|
||||
pkgver = 0.1.0
|
||||
pkgver = 0.3.0
|
||||
pkgrel = 1
|
||||
url = https://moonlight-stream.com
|
||||
arch = x86_64
|
||||
|
@ -9,7 +9,7 @@ pkgbase = moonlight-qt
|
|||
depends = qt5-quickcontrols
|
||||
depends = qt5-quickcontrols2
|
||||
optdepends = libva-intel-driver: hardware acceleration for Intel GPUs
|
||||
source = moonlight-qt::git+https://github.com/moonlight-stream/moonlight-qt.git#tag=v0.1.0
|
||||
source = moonlight-qt::git+https://github.com/moonlight-stream/moonlight-qt.git
|
||||
md5sums = SKIP
|
||||
|
||||
pkgname = moonlight-qt
|
||||
|
|
12
PKGBUILD
12
PKGBUILD
|
@ -1,7 +1,7 @@
|
|||
# Maintainer: Michael Herzberg <{firstname}@{firstinitial}{lastname}.de>
|
||||
|
||||
pkgname=moonlight-qt
|
||||
pkgver=0.1.0
|
||||
pkgver=0.3.0
|
||||
pkgrel=1
|
||||
pkgdesc='GameStream client for PCs (Windows, Mac, and Linux)'
|
||||
arch=('x86_64')
|
||||
|
@ -9,16 +9,20 @@ license=('GPL')
|
|||
url='https://moonlight-stream.com'
|
||||
depends=('qt5-base' 'qt5-quickcontrols' 'qt5-quickcontrols2')
|
||||
optdepends=('libva-intel-driver: hardware acceleration for Intel GPUs')
|
||||
source=($pkgname::"git+https://github.com/moonlight-stream/${pkgname}.git#tag=v${pkgver}")
|
||||
source=($pkgname::"git+https://github.com/moonlight-stream/${pkgname}.git")
|
||||
md5sums=('SKIP')
|
||||
|
||||
prepare() {
|
||||
pkgver() {
|
||||
cd "$pkgname"
|
||||
git submodule update --init --recursive
|
||||
git describe --long --tags | sed 's/^v//;s/-.*//'
|
||||
}
|
||||
|
||||
build() {
|
||||
cd "$pkgname"
|
||||
|
||||
git checkout v${pkgver}
|
||||
git submodule update --init --recursive
|
||||
|
||||
qmake PREFIX="$pkgdir/usr"
|
||||
make
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue