diff options
author | eugene | 2022-10-30 13:20:31 +0000 |
---|---|---|
committer | eugene | 2022-10-30 13:20:31 +0000 |
commit | ae0cdda5d669694f6f8fe4cf6f0b50b381417c8b (patch) | |
tree | 350b7d3d9707bac1fea1f467be4e803689185e94 | |
parent | 114500360f8c9a98905be5524edcadd5a412d929 (diff) | |
download | aur-ae0cdda5d669694f6f8fe4cf6f0b50b381417c8b.tar.gz |
git submodules fix, new architecture, license
-rw-r--r-- | .SRCINFO | 3 | ||||
-rw-r--r-- | PKGBUILD | 7 |
2 files changed, 5 insertions, 5 deletions
@@ -4,7 +4,8 @@ pkgbase = re3-git pkgrel = 1 url = https://github.com/GTAmodding/re3 arch = x86_64 - license = unknown + arch = aarch64 + license = custom:none makedepends = git makedepends = premake depends = openal @@ -1,12 +1,11 @@ -# Maintainer: hazelnot <scrabcrab@gmail.com> _pkgbase=re3 pkgname=re3-git pkgver=r3167.3233ffe1 pkgrel=1 pkgdesc="An open-source project reverse-engineering Grand Theft Auto III" -arch=('x86_64') +arch=('x86_64' 'aarch64') url="https://github.com/GTAmodding/re3" -license=('unknown') +license=('custom:none') depends=('openal' 'glew' 'glfw' 'mpg123' 'zenity') makedepends=('git' 'premake') provides=("$_pkgbase") @@ -42,7 +41,7 @@ prepare() { do git config "submodule.vendor/$submod.url" "../$submod" done - git submodule update + git -c protocol.file.allow=always submodule update patch -uNp1 -i ../no_link_with_unnecessary_sndfile.patch } |