13 lines
244 B
Python
13 lines
244 B
Python
from pythonforandroid.recipe import NDKRecipe
|
|
|
|
|
|
class PngRecipe(NDKRecipe):
|
|
name = 'png'
|
|
version = '1.6.15'
|
|
url = 'https://github.com/julienr/libpng-android/archive/{version}.zip'
|
|
|
|
generated_libraries = ['libpng.a']
|
|
|
|
|
|
recipe = PngRecipe()
|
|
|