blob: a939e3467d112e17fe209eeb4b88e32469cf7db0 (
plain)
1 # Description: A free and open-source replacement for the Epic Games Launcher
2 # URL: https://github.com/derrod/legendary
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Depends on: python3-requests
5 # Optional: wine
6
7 name=legendary
8 version=0.20.32
9 release=1
10 source=(
11 https://github.com/derrod/legendary/archive/$version/${name#*-}-$version.tar.gz)
12
13 build() {
14 cd ${name#*-}-$version
15 /usr/bin/python3 setup.py build
16 /usr/bin/python3 setup.py install --prefix=/usr --root=$PKG --optimize=1 --skip-build
17 }
|