2017-08-13 03:24:00 +02:00
|
|
|
from pythonforandroid.recipe import NDKRecipe
|
|
|
|
|
|
|
|
|
|
|
|
class PngRecipe(NDKRecipe):
|
2019-03-30 21:58:45 +01:00
|
|
|
name = 'png'
|
|
|
|
# This version is the last `sha commit` published in the repo (it's more
|
|
|
|
# than one year old...) and it's for libpng version `1.6.29`. We set a
|
|
|
|
# commit for a version because the author of the github's repo never
|
|
|
|
# released/tagged it, despite He performed the necessary changes in
|
|
|
|
# master branch.
|
|
|
|
version = 'b43b4c6'
|
2017-08-13 03:24:00 +02:00
|
|
|
|
2019-03-30 21:58:45 +01:00
|
|
|
# TODO: Try to move the repo to mainline
|
|
|
|
url = 'https://github.com/julienr/libpng-android/archive/{version}.zip'
|
2017-08-13 03:24:00 +02:00
|
|
|
|
2019-03-30 21:58:45 +01:00
|
|
|
generated_libraries = ['libpng.a']
|
2017-08-13 03:24:00 +02:00
|
|
|
|
|
|
|
|
2019-03-30 21:58:45 +01:00
|
|
|
recipe = PngRecipe()
|