diff options
author | B. Watson <yalhcru@gmail.com> | 2021-02-18 18:22:38 -0500 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2021-02-21 00:05:07 +0700 |
commit | f326fd9ae0086d51026c3ea2e2062e97a847dd44 (patch) | |
tree | 90b68c880150b8977d85924b35218b2166161d51 /games/ppsspp/ppsspp.SlackBuild | |
parent | 99a9bb19d0ef6bd741eb7101799d9a25092c7627 (diff) |
games/ppsspp: Use correct github URLs.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'games/ppsspp/ppsspp.SlackBuild')
-rw-r--r-- | games/ppsspp/ppsspp.SlackBuild | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/games/ppsspp/ppsspp.SlackBuild b/games/ppsspp/ppsspp.SlackBuild index 2c79e3aaaec9..48a923757846 100644 --- a/games/ppsspp/ppsspp.SlackBuild +++ b/games/ppsspp/ppsspp.SlackBuild @@ -23,6 +23,12 @@ # OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +# 20210218 bkw: modified by SlackBuilds.org. Use correct filenames +# in the github URLs for the 'submodules'. This is needed because +# we don't get to decide what user-agent the user downloads files +# with. If the Content-Disposition header is honored (e.g. files +# downloaded with a web browser), this build failed. + PRGNAM=ppsspp VERSION=${VERSION:-1.10.3} BUILD=${BUILD:-1} @@ -66,15 +72,15 @@ cd $PRGNAM-$VERSION # The submodules are in a separate archive. This is equivalent to # git submodule update --init --recursive -tar -xvf $CWD/hrydgard-glslang-d0850f8.tar.gz \ +tar -xvf $CWD/glslang-d0850f8*.tar.gz \ -C ext/glslang --strip-components=1 -tar -xvf $CWD/hrydgard-ppsspp-lang-1c64b8f.tar.gz \ +tar -xvf $CWD/ppsspp-lang-1c64b8f*.tar.gz \ -C assets/lang --strip-components=1 -tar -xvf $CWD/KhronosGroup-SPIRV-Cross-a1f7c8d.tar.gz \ +tar -xvf $CWD/SPIRV-Cross-a1f7c8d*.tar.gz \ -C ext/SPIRV-Cross --strip-components=1 -tar -xvf $CWD/Kingcom-armips-7885552.tar.gz \ +tar -xvf $CWD/armips-7885552*.tar.gz \ -C ext/armips --strip-components=1 -tar -xvf $CWD/hrydgard-ppsspp-ffmpeg-55147e5.tar.gz \ +tar -xvf $CWD/ppsspp-ffmpeg-55147e5*.tar.gz \ --exclude '*/Windows*' --exclude '*/android' \ --exclude '*/ios' --exclude '*/blackberry'\ --exclude '*/macosx' --exclude '*/wiiu' \ |