Makefile 945 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. # $Id$
  8. include $(TOPDIR)/rules.mk
  9. PKG_NAME:=qos-scripts
  10. PKG_VERSION:=1.2.1
  11. PKG_RELEASE:=2
  12. PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
  13. include $(INCLUDE_DIR)/package.mk
  14. define Package/qos-scripts
  15. SECTION:=utils
  16. CATEGORY:=Base system
  17. DEPENDS:=+tc +kmod-sched +iptables-mod-filter +iptables-mod-ipopt +iptables-mod-conntrack-extra +iptables-mod-imq
  18. TITLE:=QoS scripts
  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))