Updated to 1.0.1.
This commit is contained in:
parent
8aa5fb7de7
commit
7c90199819
2 changed files with 6 additions and 6 deletions
4
.SRCINFO
4
.SRCINFO
|
@ -1,6 +1,6 @@
|
||||||
pkgbase = moonlight-qt
|
pkgbase = moonlight-qt
|
||||||
pkgdesc = GameStream client for PCs (Windows, Mac, and Linux)
|
pkgdesc = GameStream client for PCs (Windows, Mac, and Linux)
|
||||||
pkgver = 0.10.1
|
pkgver = 1.0.1
|
||||||
pkgrel = 1
|
pkgrel = 1
|
||||||
url = https://moonlight-stream.com
|
url = https://moonlight-stream.com
|
||||||
arch = x86_64
|
arch = x86_64
|
||||||
|
@ -14,7 +14,7 @@ pkgbase = moonlight-qt
|
||||||
depends = qt5-multimedia
|
depends = qt5-multimedia
|
||||||
depends = sdl2_ttf
|
depends = sdl2_ttf
|
||||||
optdepends = libva-intel-driver: hardware acceleration for Intel GPUs
|
optdepends = libva-intel-driver: hardware acceleration for Intel GPUs
|
||||||
source = moonlight-qt::git+https://github.com/moonlight-stream/moonlight-qt.git#tag=v0.10.1
|
source = git+https://github.com/moonlight-stream/moonlight-qt.git#tag=v1.0.1
|
||||||
md5sums = SKIP
|
md5sums = SKIP
|
||||||
|
|
||||||
pkgname = moonlight-qt
|
pkgname = moonlight-qt
|
||||||
|
|
8
PKGBUILD
8
PKGBUILD
|
@ -1,7 +1,7 @@
|
||||||
# Maintainer: Michael Herzberg <{firstname}@{firstinitial}{lastname}.de>
|
# Maintainer: Michael Herzberg <{firstname}@{firstinitial}{lastname}.de>
|
||||||
|
|
||||||
pkgname=moonlight-qt
|
pkgname=moonlight-qt
|
||||||
pkgver=0.10.1
|
pkgver=1.0.1
|
||||||
pkgrel=1
|
pkgrel=1
|
||||||
pkgdesc='GameStream client for PCs (Windows, Mac, and Linux)'
|
pkgdesc='GameStream client for PCs (Windows, Mac, and Linux)'
|
||||||
arch=('x86_64')
|
arch=('x86_64')
|
||||||
|
@ -10,18 +10,18 @@ url='https://moonlight-stream.com'
|
||||||
depends=('qt5-base' 'qt5-quickcontrols' 'qt5-quickcontrols2' 'qt5-svg' 'ffmpeg' 'qt5-multimedia' 'sdl2_ttf')
|
depends=('qt5-base' 'qt5-quickcontrols' 'qt5-quickcontrols2' 'qt5-svg' 'ffmpeg' 'qt5-multimedia' 'sdl2_ttf')
|
||||||
makedepends=('git')
|
makedepends=('git')
|
||||||
optdepends=('libva-intel-driver: hardware acceleration for Intel GPUs')
|
optdepends=('libva-intel-driver: hardware acceleration for Intel GPUs')
|
||||||
source=($pkgname::"git+https://github.com/moonlight-stream/${pkgname}.git#tag=v${pkgver}")
|
source=("git+https://github.com/moonlight-stream/${pkgname}.git#tag=v${pkgver}")
|
||||||
md5sums=('SKIP')
|
md5sums=('SKIP')
|
||||||
|
|
||||||
prepare() {
|
prepare() {
|
||||||
cd "$pkgname"
|
cd "$pkgname"
|
||||||
git submodule update --init --recursive
|
git submodule update --init --recursive
|
||||||
qmake PREFIX="$pkgdir/usr"
|
qmake PREFIX="$pkgdir/usr" moonlight-qt.pro
|
||||||
}
|
}
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
cd "$pkgname"
|
cd "$pkgname"
|
||||||
make
|
make release
|
||||||
}
|
}
|
||||||
|
|
||||||
package() {
|
package() {
|
||||||
|
|
Loading…
Reference in a new issue