wok-6.x annotate lutris/receipt @ rev 24435
updated consolekit2 and consolekit2-dev (1.2.1 -> 1.2.4)
author | Hans-G?nter Theisgen |
---|---|
date | Sun Feb 13 07:06:09 2022 +0100 (2022-02-13) |
parents | 8f4d7f7edd9e |
children |
rev | line source |
---|---|
pascal@16071 | 1 # SliTaz package receipt. |
pascal@16071 | 2 |
pascal@16071 | 3 PACKAGE="lutris" |
Hans-G?nter@23146 | 4 VERSION="0.5.4" |
pascal@16071 | 5 CATEGORY="games" |
pascal@16071 | 6 SHORT_DESC="An open gaming platform for Linux." |
pascal@16071 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@16071 | 8 LICENSE="GPL3" |
pascal@20669 | 9 WEB_SITE="https://lutris.net/" |
Hans-G?nter@23147 | 10 |
Hans-G?nter@23147 | 11 TARBALL="${PACKAGE}_$VERSION.tar.xz" |
pascal@16071 | 12 WGET_URL="${WEB_SITE}releases/$TARBALL" |
pascal@16071 | 13 |
pascal@16072 | 14 SUGGESTED="wine scummvm gens-gs mupen64plus dosbox pcsxr-svn" |
pascal@16072 | 15 # uae mednafen sdlmame snes9x-gtk steam atari800 dolphin-emu frotz hatari |
pascal@16072 | 16 # jzintv mednafen nulldc o2em openmsx osmose |
Hans-G?nter@23146 | 17 DEPENDS="py3k python-xdg pygobject python-pyyaml libsoup" |
Hans-G?nter@23146 | 18 BUILD_DEPENDS="py3k python-setuptools python-xdg" |
pascal@16071 | 19 |
pascal@24433 | 20 # What is the latest version available today? |
pascal@24433 | 21 current_version() |
pascal@24433 | 22 { |
pascal@24433 | 23 wget -O - ${WGET_URL%/*} 2>/dev/null | \ |
pascal@24433 | 24 sed "/latest/d;/$PACKAGE.[0-9]/!d;/tar/!d;s|.*$PACKAGE.\\(.*\\).tar.*\".*|\\1|" | sort -Vr | sed q |
pascal@24433 | 25 } |
pascal@24433 | 26 |
pascal@16071 | 27 # Rules to configure and make the package. |
pascal@16071 | 28 compile_rules() |
pascal@16071 | 29 { |
Hans-G?nter@23146 | 30 python3 setup.py install --root=$DESTDIR |
pascal@16071 | 31 } |
pascal@16071 | 32 |
pascal@16071 | 33 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@16071 | 34 genpkg_rules() |
pascal@16071 | 35 { |
Hans-G?nter@23146 | 36 cp -a $install/usr $fs |
pascal@16071 | 37 } |