Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

change pygame URL to maintained repo, new version #2839

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions pythonforandroid/recipes/pygame/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ class Pygame2Recipe(CompiledComponentsPythonRecipe):
not part of the build. It's usable, but not complete.
"""

version = '2.1.0'
url = 'https://github.com/pygame/pygame/archive/{version}.tar.gz'
version = '2.3.0'
url = 'https://github.com/pygame-community/pygame-ce/archive/{version}.tar.gz'

site_packages_name = 'pygame'
name = 'pygame'
Expand Down Expand Up @@ -58,7 +58,6 @@ def prebuild_arch(self, arch):

def get_recipe_env(self, arch):
env = super().get_recipe_env(arch)
env['USE_SDL2'] = '1'
env["PYGAME_CROSS_COMPILE"] = "TRUE"
env["PYGAME_ANDROID"] = "TRUE"
return env
Expand Down