Makefile 953 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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. PKGARCH:=all
  19. endef
  20. define Package/qos-scripts/description
  21. A set of scripts that abstract QoS configuration into a simple
  22. configuration file supporting stanzas that specify any number of QoS
  23. entries.
  24. endef
  25. define Build/Prepare
  26. endef
  27. define Build/Configure
  28. endef
  29. define Build/Compile
  30. endef
  31. define Package/qos-scripts/install
  32. $(INSTALL_DIR) $(1)
  33. $(CP) ./files/* $(1)/
  34. endef
  35. $(eval $(call BuildPackage,qos-scripts))