diff options
author | Autumn Boyhan | 2021-10-18 08:59:00 -0400 |
---|---|---|
committer | Autumn Boyhan | 2021-10-18 08:59:00 -0400 |
commit | 7ed684cc7b3f1e1b30f58ac3fa1a4679de116493 (patch) | |
tree | 47691d37669f1f87183536e54579057ed71b0b02 /PKGBUILD | |
parent | 85e1ac98dfe34d5c4da43603db5883453b0f4089 (diff) | |
download | aur-7ed684cc7b3f1e1b30f58ac3fa1a4679de116493.tar.gz |
Reworked package to pull in sge and xsge from the aur, hopefully fixing issues with the previous package.
Diffstat (limited to 'PKGBUILD')
-rwxr-xr-x | PKGBUILD | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -2,14 +2,15 @@ pkgname=retux pkgver=1.6 -pkgrel=1 +pkgrel=2 pkgdesc="ReTux is a libre open source action platformer loosely inspired by the Mario games, utilizing the art assets from the SuperTux project." arch=('x86_64') url="https://retux-game.github.io/" license=('GPL3') -depends=('python' 'python-pip' 'python-pygame') +depends=('python' 'python-sge' 'python-xsge') provides=('retux') conflicts=('retux' 'retux-bin') +_name=${pkgname#python-} source=("https://github.com/retux-game/retux/releases/download/v${pkgver}/${pkgname}-${pkgver}-src.zip" "${pkgname}.desktop" "${pkgname}.sh") @@ -22,7 +23,6 @@ noextract=("${pkgname}-${pkgver}-src.zip") prepare() { unzip ${srcdir}/${pkgname}-${pkgver}-src.zip mv ${srcdir}/${pkgname}-${pkgver}-src ${srcdir}/${pkgname} - pip install -U uniseg sge xsge_gui xsge_lighting xsge_path xsge_physics xsge_tiled } package() { |