1
0
mirror of https://git.openwrt.org/feed/packages.git synced 2024-06-20 15:48:40 +02:00
openwrt-packages/utils/uhubctl/Makefile
Andrea Pesaresi 78ff18922d uhubctl: update to 2.5.0
Signed-off-by: Andrea Pesaresi <andreapesaresi82@gmail.com>
2022-11-18 09:27:49 +08:00

37 lines
931 B
Makefile

include $(TOPDIR)/rules.mk
PKG_NAME:=uhubctl
PKG_VERSION:=2.5.0
PKG_RELEASE:=1
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=https://codeload.github.com/mvp/uhubctl/tar.gz/v$(PKG_VERSION)?
PKG_HASH:=d4452252f7862f7a45dd9c62f2ea7cd3a57ab5f5ab0e54a857d4c695699bbba3
PKG_LICENSE:=GPL-2.0-only
PKG_LICENSE_FILES:=COPYING LICENSE
PKG_MAINTAINER:=Steven Honson <steven@honson.id.au>
include $(INCLUDE_DIR)/package.mk
define Package/uhubctl
SECTION:=utils
CATEGORY:=Utilities
TITLE:=USB hub per-port power control
URL:=https://github.com/mvp/uhubctl
DEPENDS:=+libusb-1.0
endef
define Package/uhubctl/description
uhubctl is a utility that allows you to control USB power on USB hubs that
implement per-port or ganged power switching.
endef
define Package/uhubctl/install
$(INSTALL_DIR) $(1)/usr/sbin
$(INSTALL_BIN) $(PKG_BUILD_DIR)/uhubctl $(1)/usr/sbin/
endef
$(eval $(call BuildPackage,uhubctl))