11 lines
291 B
Python
11 lines
291 B
Python
from toolchain import CythonRecipe
|
|
|
|
class CurlyRecipe(CythonRecipe):
|
|
version = "master"
|
|
url = "https://github.com/tito/curly/archive/{version}.zip"
|
|
library = "libcurly.a"
|
|
depends = ["python", "libcurl", "sdl2", "sdl2_image"]
|
|
pre_build_ext = True
|
|
|
|
|
|
recipe = CurlyRecipe()
|