9 lines
282 B
Python
9 lines
282 B
Python
from pythonforandroid.toolchain import BootstrapNDKRecipe
|
|
from os.path import exists
|
|
|
|
class LibSDL2TTF(BootstrapNDKRecipe):
|
|
version = '2.0.14'
|
|
url = 'https://www.libsdl.org/projects/SDL_ttf/release/SDL2_ttf-{version}.tar.gz'
|
|
dir_name = 'SDL2_ttf'
|
|
|
|
recipe = LibSDL2TTF()
|