Initial commit.
This commit is contained in:
commit
c23787e40a
3 changed files with 49 additions and 0 deletions
16
.SRCINFO
Normal file
16
.SRCINFO
Normal file
|
@ -0,0 +1,16 @@
|
|||
pkgbase = moonlight-qt
|
||||
pkgdesc = GameStream client for PCs (Windows, Mac, and Linux)
|
||||
pkgver = 0.1.0
|
||||
pkgrel = 1
|
||||
url = https://moonlight-stream.com
|
||||
arch = x86_64
|
||||
license = GPL
|
||||
depends = qt5-base
|
||||
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
|
||||
md5sums = SKIP
|
||||
|
||||
pkgname = moonlight-qt
|
||||
|
4
.gitignore
vendored
Normal file
4
.gitignore
vendored
Normal file
|
@ -0,0 +1,4 @@
|
|||
*
|
||||
!.gitignore
|
||||
!PKGBUILD
|
||||
!.SRCINFO
|
29
PKGBUILD
Normal file
29
PKGBUILD
Normal file
|
@ -0,0 +1,29 @@
|
|||
# Maintainer: Michael Herzberg <{firstname}@{firstinitial}{lastname}.de>
|
||||
|
||||
pkgname=moonlight-qt
|
||||
pkgver=0.1.0
|
||||
pkgrel=1
|
||||
pkgdesc='GameStream client for PCs (Windows, Mac, and Linux)'
|
||||
arch=('x86_64')
|
||||
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}")
|
||||
md5sums=('SKIP')
|
||||
|
||||
prepare() {
|
||||
cd "$pkgname"
|
||||
git submodule update --init --recursive
|
||||
}
|
||||
|
||||
build() {
|
||||
cd "$pkgname"
|
||||
qmake PREFIX="$pkgdir/usr"
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$pkgname"
|
||||
make install
|
||||
}
|
Loading…
Reference in a new issue