2017-07-02 00:21:40 +00:00
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=click
|
2019-03-05 23:16:15 +00:00
|
|
|
PKG_VERSION:=7.0
|
2017-07-02 00:21:40 +00:00
|
|
|
PKG_RELEASE:=1
|
|
|
|
|
2019-10-20 19:03:12 +00:00
|
|
|
PYPI_NAME:=$(PKG_NAME)
|
|
|
|
PYPI_SOURCE_NAME:=Click
|
2019-03-05 23:16:15 +00:00
|
|
|
PKG_HASH:=5b94b49521f6456670fdb30cd82a4eca9412788a93fa6dd6df72c94d5a8ff2d7
|
|
|
|
|
|
|
|
PKG_MAINTAINER:=Daniel Golle <daniel@makrotopia.org>
|
2017-07-02 00:21:40 +00:00
|
|
|
PKG_LICENSE:=BSD-3-Clause
|
|
|
|
PKG_LICENSE_FILES:=LICENSE
|
|
|
|
|
2019-10-20 19:03:12 +00:00
|
|
|
include ../pypi.mk
|
2017-07-02 00:21:40 +00:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
2018-01-10 07:56:52 +00:00
|
|
|
include ../python3-package.mk
|
2017-07-02 00:21:40 +00:00
|
|
|
|
|
|
|
define Package/python3-click
|
|
|
|
SECTION:=lang
|
|
|
|
CATEGORY:=Languages
|
|
|
|
SUBMENU:=Python
|
2019-03-05 23:16:15 +00:00
|
|
|
TITLE:=Click
|
|
|
|
URL:=https://palletsprojects.com/p/click/
|
2017-07-02 00:21:40 +00:00
|
|
|
DEPENDS:=+python3-light
|
|
|
|
VARIANT:=python3
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/python3-click/description
|
2019-03-05 23:16:15 +00:00
|
|
|
Composable command line interface toolkit
|
2017-07-02 00:21:40 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call Py3Package,python3-click))
|
|
|
|
$(eval $(call BuildPackage,python3-click))
|
2019-03-05 23:16:15 +00:00
|
|
|
$(eval $(call BuildPackage,python3-click-src))
|