Makefile 948 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. #
  2. # Copyright (C) 2006 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.1.1
  11. PKG_RELEASE:=1
  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-extra +iptables-mod-conntrack +iptables-mod-imq
  18. TITLE:=QoS scripts
  19. DESCRIPTION:=QoS scripts \\\
  20. A set of scripts that abstract QoS configuration \\\
  21. into a simple configuration file supporting stanzas that specify \\\
  22. any number of QoS 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))