mirror of
https://github.com/openwrt/packages.git
synced 2026-04-15 19:02:09 +00:00
Full release notes: https://github.com/ofek/userpath/releases/tag/v1.9.2 Add a bit more testing. Signed-off-by: Alexandru Ardelean <alex@shruggie.ro>
43 lines
1.0 KiB
Makefile
43 lines
1.0 KiB
Makefile
#
|
|
# Copyright (C) 2023 Jeffery To
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=python-userpath
|
|
PKG_VERSION:=1.9.2
|
|
PKG_RELEASE:=1
|
|
|
|
PYPI_NAME:=userpath
|
|
PKG_HASH:=6c52288dab069257cc831846d15d48133522455d4677ee69a9781f11dbefd815
|
|
|
|
PKG_LICENSE:=MIT
|
|
PKG_LICENSE_FILES:=LICENSE.txt
|
|
PKG_MAINTAINER:=Alexandru Ardelean <ardeleanalex@gmail.com>
|
|
|
|
PKG_BUILD_DEPENDS:=python-hatchling/host
|
|
|
|
include ../pypi.mk
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include ../python3-package.mk
|
|
|
|
define Package/python3-userpath
|
|
SECTION:=lang
|
|
CATEGORY:=Languages
|
|
SUBMENU:=Python
|
|
TITLE:=Cross-platform tool for modifying a user's PATH
|
|
URL:=https://github.com/ofek/userpath
|
|
DEPENDS:=+python3-light +python3-click +python3-psutil
|
|
endef
|
|
|
|
define Package/python3-userpath/description
|
|
This is a tool for modifying a user's PATH.
|
|
endef
|
|
|
|
$(eval $(call Py3Package,python3-userpath))
|
|
$(eval $(call BuildPackage,python3-userpath))
|
|
$(eval $(call BuildPackage,python3-userpath-src))
|