blob: e12999e2b6ef1a4b0e1f15574bd7241e6f9418ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
# Maintainer: Vitalii Rybalko <vilko dot a at gmail dot com>
# Maintainer: Pasha Finkelshteyn <pavel.finkelshtein+AUR@gmail.com>
pkgname=playkey-linux
pkgver=1.10
pkgrel=4
pkgdesc='Client for game streaming service playkey.net'
arch=('x86_64')
url='https://www.playkey.net'
license=('custom')
options=('!strip')
provides=('playkey-linux')
conflicts=()
depends=(
'chromium'
'wine'
'python3'
'winetricks'
'openal'
'lib32-openal'
)
makedepends=(
'git'
'innoextract'
)
install=
source_x86_64=(
'https://static.playkey.net/clientdownload.aspx?file=windows-desktop/Release/PlaykeySetup.exe&name=PlaykeySetup.exe'
'git+https://github.com/vilkoz/playkey-linux-launcher.git'
)
sha256sums_x86_64=('d53f9a016635f5c72e8fae86023a4e612f94c8399ee27df7c013c7dc043ad451'
'SKIP')
prepare() {
msg2 'Extracting PlaykeySetup.exe'
innoextract 'PlaykeySetup.exe&name=PlaykeySetup.exe'
}
package() {
msg2 'Creating installation folder'
install -d -m755 $pkgdir/usr/share/playkey-linux
msg2 'Copying windows binaries'
cp -ra app/* $pkgdir/usr/share/playkey-linux
find $pkgdir/usr/share/playkey-linux -type d -exec chmod 755 "{}" \;
find $pkgdir/usr/share/playkey-linux -type f -exec chmod 644 "{}" \;
msg2 'Copying playkey-linux-launcher scripts'
install playkey-linux-launcher/xdg-open $pkgdir/usr/share/playkey-linux
install -d -m755 $pkgdir/usr/bin
install -m755 playkey-linux-launcher/playkey-linux $pkgdir/usr/bin
msg2 'Copying playkey-linux-launcher chrome user-agent extension'
install -d -m755 $pkgdir/usr/share/playkey-linux/extension
cp -ra playkey-linux-launcher/extension/* $pkgdir/usr/share/playkey-linux/extension/
find $pkgdir/usr/share/playkey-linux/extension/ -type f -exec chmod 644 "{}" \;
}
|