Makefile 938 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. #
  2. # Copyright (C) 2006-2008 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:=qos-scripts
  9. PKG_VERSION:=1.2.1
  10. PKG_RELEASE:=2
  11. PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
  12. include $(INCLUDE_DIR)/package.mk
  13. define Package/qos-scripts
  14. SECTION:=utils
  15. CATEGORY:=Base system
  16. DEPENDS:=+tc +kmod-sched +iptables-mod-filter +iptables-mod-ipopt +iptables-mod-conntrack-extra +iptables-mod-imq
  17. TITLE:=QoS scripts
  18. endef
  19. define Package/qos-scripts/description
  20. A set of scripts that abstract QoS configuration into a simple
  21. configuration file supporting stanzas that specify any number of QoS
  22. entries.
  23. endef
  24. define Build/Prepare
  25. endef
  26. define Build/Configure
  27. endef
  28. define Build/Compile
  29. endef
  30. define Package/qos-scripts/install
  31. $(INSTALL_DIR) $(1)
  32. $(CP) ./files/* $(1)/
  33. endef
  34. $(eval $(call BuildPackage,qos-scripts))