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.

47 lines
1.1 KiB

  1. #
  2. # Copyright (C) 2014 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:=sqm-scripts
  9. PKG_SOURCE_VERSION:=bb064ad6065dcfb4966662bfab15b9fcdbb48e5f
  10. PKG_VERSION:=1.5.0
  11. PKG_RELEASE:=2
  12. PKG_SOURCE_PROTO:=git
  13. PKG_SOURCE_URL:=https://github.com/tohojo/sqm-scripts
  14. PKG_MIRROR_HASH:=d41301ed1e318ea81c6c8f29c1847efdda3663573d12a3e0b855b4b8b8cf0610
  15. PKG_MAINTAINER:=Toke Høiland-Jørgensen <toke@toke.dk>
  16. PKG_LICENSE:=GPL-2.0-only
  17. include $(INCLUDE_DIR)/package.mk
  18. define Package/sqm-scripts
  19. SECTION:=net
  20. CATEGORY:=Base system
  21. DEPENDS:=+tc +kmod-sched-core +kmod-ifb +iptables \
  22. +iptables-mod-ipopt +iptables-mod-conntrack-extra \
  23. +kmod-sched-cake
  24. TITLE:=SQM Scripts (QoS)
  25. PKGARCH:=all
  26. endef
  27. define Package/sqm-scripts/description
  28. A set of scripts that does simple SQM configuration.
  29. endef
  30. define Package/sqm-scripts/conffiles
  31. /etc/config/sqm
  32. /etc/sqm/sqm.conf
  33. endef
  34. define Package/sqm-scripts/install
  35. make -C $(PKG_BUILD_DIR) DESTDIR=$(1) PLATFORM=openwrt install
  36. endef
  37. $(eval $(call BuildPackage,sqm-scripts))