0
0
mirror of https://github.com/openwrt/packages.git synced 2025-01-31 03:41:44 +00:00
Jeffery To b1b008f42f python-packages: Clean up build variables
* Rename PYTHON3_PKG_SETUP_VARS to PYTHON3_PKG_BUILD_VARS, and
  PYTHON3_PKG_SETUP_DIR to PYTHON3_PKG_BUILD_PATH

  The new variable names emphasize that these values apply to the new
  build process.

* Remove PYTHON3_PKG_SETUP_ARGS set to the empty string

  These were set to override the default arguments in the old build
  process and not applicable to the new build process.

Signed-off-by: Jeffery To <jeffery.to@gmail.com>
2023-04-24 16:22:03 +08:00

34 lines
806 B
Makefile

include $(TOPDIR)/rules.mk
PKG_NAME:=python-docopt
PKG_VERSION:=0.6.2
PKG_RELEASE:=3
PYPI_NAME:=docopt
PKG_HASH:=49b3a825280bd66b3aa83585ef59c4a8c82f2c8a522dbe754a8bc8d08c85c491
PKG_MAINTAINER:=Javier Marcet <javier@marcet.info>
PKG_LICENSE:=MIT
PKG_LICENSE_FILES:=LICENSE-MIT
include ../pypi.mk
include $(INCLUDE_DIR)/package.mk
include ../python3-package.mk
define Package/python3-docopt
SECTION:=lang
CATEGORY:=Languages
SUBMENU:=Python
TITLE:=Pythonic argument parser, that will make you smile
URL:=http://docopt.org/
DEPENDS:=+python3-light
endef
define Package/python3-docopt/description
Pythonic argument parser, that will make you smile
endef
$(eval $(call Py3Package,python3-docopt))
$(eval $(call BuildPackage,python3-docopt))
$(eval $(call BuildPackage,python3-docopt-src))