summaryrefslogtreecommitdiff
path: root/app-emulation/linux-steam-integration/linux-steam-integration-0.7.3.ebuild
blob: 223a11e4eac00843ce07bddfc3db809afcbb3c56 (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
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=6

inherit meson multilib-minimal

DESCRIPTION="Helper for enabling better Steam integration on Linux"
HOMEPAGE="https://github.com/clearlinux/linux-steam-integration"
SRC_URI="https://github.com/clearlinux/"${PN}"/releases/download/v"${PV}"/"${P}".tar.xz"

LICENSE="LGPL-2.1+"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""

RDEPEND="app-emulation/steam"
DEPEND="x11-libs/gtk+:3
	virtual/pkgconfig"

PATCHES=( "${FILESDIR}"/bzip2.patch )

multilib_src_configure() {
	local emesonargs=(
		-Dwith-shim=co-exist \
		-Dwith-frontend=true \
		-Dwith-steam-binary=/usr/bin/steam \
		-Dwith-new-libcxx-abi=true
	)
	meson_src_configure
}

multilib_src_install() {
	meson_src_install
}