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.

42 lines
1.1 KiB

  1. #
  2. # Copyright (C) 2022 CZ.NIC, z. s. p. o. (https://www.nic.cz/)
  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:=tinyionice
  9. PKG_VERSION:=1.0.1
  10. PKG_RELEASE:=$(AUTORELEASE)
  11. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
  12. PKG_SOURCE_URL:=https://codeload.github.com/xyproto/tinyionice/tar.gz/v${PKG_VERSION}?
  13. PKG_HASH:=2b5d61cd1a153060ed96bb5e6585c16d1f7a0828a13ee7a9049b49fc09885440
  14. PKG_MAINTAINER:=Michal Vasilek <michal.vasilek@nic.cz>
  15. PKG_LICENSE:=GPL-2.0-only
  16. PKG_LICENSE_FILES:=COPYING
  17. PKG_INSTALL:=1
  18. include $(INCLUDE_DIR)/package.mk
  19. define Package/tinyionice
  20. SECTION:=utils
  21. CATEGORY:=Utilities
  22. TITLE:=Independent fork of ionice from util-linux
  23. URL:=https://github.com/xyproto/tinyionice
  24. endef
  25. define Package/tinyionice/Default/description
  26. Independent fork of ionice from util-linux
  27. endef
  28. define Package/tinyionice/install
  29. $(INSTALL_DIR) $(1)/usr/bin
  30. $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/* $(1)/usr/bin/
  31. endef
  32. $(eval $(call BuildPackage,tinyionice))