mirror of
https://github.com/godotengine/buildroot.git
synced 2026-01-02 21:48:20 +03:00
Remi is a GUI library for Python applications which transpiles an application's interface into HTML to be rendered in a web browser. This removes platform-specific dependencies and lets you easily develop cross-platform applications in Python! https://github.com/dddomodossola/remi/tree/master Signed-off-by: Gwenhael Goavec-Merou <gwenhael.goavec-merou@trabucayre.com> Reviewed-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
15 lines
418 B
Makefile
15 lines
418 B
Makefile
################################################################################
|
|
#
|
|
# python-remi
|
|
#
|
|
################################################################################
|
|
|
|
PYTHON_REMI_VERSION = v1.0
|
|
PYTHON_REMI_SITE = $(call github,dddomodossola,remi,$(PYTHON_REMI_VERSION))
|
|
PYTHON_REMI_LICENSE = Apache-2.0
|
|
PYTHON_REMI_LICENSE_FILES = LICENSE
|
|
PYTHON_REMI_SETUP_TYPE = setuptools
|
|
|
|
$(eval $(python-package))
|
|
|