blob: bb66e73413a9483656e672e1d68f77485e7873eb (
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
|
# Maintainer: Dummerle
pkgname=rare
pkgver=1.11.2
pkgrel=1
pkgdesc="Open source alternative for Epic Games Launcher, using Legendary"
arch=('any')
url="https://github.com/RareDevs/Rare"
license=('GPL3')
depends=(
pyside6
python-requests
python-qtawesome
python-orjson
python-vdf
legendary
)
makedepends=(
git
python-{build,installer,wheel}
python-setuptools{,-scm}
)
optdepends=(
"wine: run Windows games"
"proton: run Windows games"
"python-pypresence: Discord RPC integration"
"python-pywebview: embedded browser for logging in"
)
source=("git+https://github.com/RareDevs/Rare.git#tag=$pkgver")
sha256sums=('64d8f9c0f0c9291ca10a5d40bcd96c39f03b1e650f216edbe212d977de078edc')
build() {
cd Rare
python setup.py bdist_wheel
}
package() {
cd Rare
python -m installer -d "$pkgdir" dist/*.whl
install -Dm644 "misc/${pkgname%-git}.desktop" "$pkgdir/usr/share/applications/${pkgname%-git}.desktop"
install -Dm644 "rare/resources/images/Rare.png" "$pkgdir/usr/share/pixmaps/${pkgname%-git}.png"
}
|