blob: 8c84a3ba85549284e50ab17559bed81a0b2ef558 (
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
59
60
61
62
63
64
65
66
67
68
69
70
|
# Maintainer: Mark Wagie <mark dot wagie at proton dot me>
# Contributor: Luca Weiss <luca (at) z3ntu (dot) xyz>
pkgname=linux-steam-integration
pkgver=0.7.3
pkgrel=9
pkgdesc="Helper for enabling better Steam integration on Linux"
url="https://github.com/getsolus/linux-steam-integration"
arch=('x86_64')
license=('LGPL-2.1-or-later')
depends=('gtk3' 'lib32-gcc-libs' 'lib32-libvpx' 'steam')
makedepends=('git' 'meson')
optdepends=('steam-native-runtime: A package for installing all required deps for the native runtime.')
provides=('liblsi-redirect.so-64' 'liblsi-intercept.so-64' 'liblsi-redirect.so-32' 'liblsi-intercept.so-32')
_commit=dffff457d11ecbbb3852a5f6bae813dcfadb3165 # branch/master
source=("git+https://github.com/getsolus/linux-steam-integration.git#commit=$_commit"
'git+https://github.com/intel/libnica.git'
'partially-revert-2877813.patch'
'use-steam-runtime.patch')
sha256sums=('2e4d32acda3c20a6613732508e57a1473a0db776878e559dc4d3340fd11816f7'
'SKIP'
'77d459a53f30f1ae4aae408d49e70bc6caa3dc895e6c1ee8239a90b3661ebd0b'
'31fa5343372a98e294278daf913dc2d02c47f0fece482f759793372e4195efb2')
prepare() {
cd "$pkgname"
git submodule init
git config submodule.src/libnica.url "$srcdir/libnica"
git -c protocol.file.allow=always submodule update
# Partially revert 2877813 | Upstream issue #82
# https://github.com/clearlinux/linux-steam-integration/pull/2
patch -Np1 -i ../partially-revert-2877813.patch
# Use steam runtime by default
# https://github.com/getsolus/packages/issues/160
patch -Np1 -i ../use-steam-runtime.patch
# Bump glew
sed -i 's/libGLEW.so.2.1/libGLEW.so.2.2/g' src/intercept/main.c
}
build() {
# 64-bit build
arch-meson "$pkgname" build \
-Dwith-shim=co-exist \
-Dwith-frontend=true \
-Dwith-steam-binary=/usr/lib/steam/steam \
-Dwith-libressl-mode=shim \
-Dwith-new-libcxx-abi=true
meson compile -C build
# 32-bit build, default to building only libintercept
export CC="gcc -m32"
export CXX="g++ -m32"
export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
arch-meson "$pkgname" build32 \
--libexecdir /usr/lib32 \
--libdir /usr/lib32 \
-Dwith-shim=none \
-Dwith-libressl-mode=shim \
-Dwith-new-libcxx-abi=true
meson compile -C build32
}
package() {
meson install -C build --destdir "$pkgdir"
meson install -C build32 --destdir "$pkgdir"
}
|