You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
743 B

  1. #
  2. # Copyright (C) 2017 OpenWrt.org
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. include $(TOPDIR)/rules.mk
  8. PKG_NAME:=python-pip-conf
  9. PKG_VERSION:=0.1
  10. PKG_RELEASE:=1
  11. include $(INCLUDE_DIR)/package.mk
  12. define Package/python-pip-conf
  13. SUBMENU:=Python
  14. SECTION:=lang
  15. CATEGORY:=Languages
  16. TITLE:=Configuration file for pip/pip3
  17. URL:=https://pip.pypa.io
  18. MAINTAINER:=Alexandru Ardelean <ardeleanalex@gmail.com>
  19. endef
  20. define Package/python-pip-conf/description
  21. Configuration file for pip/pip3
  22. endef
  23. Build/Compile:=
  24. define Package/python-pip-conf/install
  25. $(INSTALL_DIR) $(1)/etc
  26. $(CP) ./files/pip.conf $(1)/etc
  27. endef
  28. $(eval $(call BuildPackage,python-pip-conf))