Makefile 896 B

123456789101112131415161718192021222324252627282930313233343536373839
  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. include $(TOPDIR)/rules.mk
  8. PKG_NAME:=yamonenv
  9. PKG_VERSION:=20051022
  10. PKG_RELEASE:=1
  11. PKG_SOURCE:=$(PKG_NAME)_gruen.4g__$(PKG_VERSION).tar.gz
  12. PKG_SOURCE_URL:=http://downloads.openwrt.org/sources/
  13. PKG_MD5SUM:=a3e4f24155aa3ba5aa502bc63fdaa6ad
  14. PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)
  15. include $(INCLUDE_DIR)/package.mk
  16. define Package/yamonenv
  17. SECTION:=utils
  18. CATEGORY:=Utilities
  19. DEPENDS:=@TARGET_au1000
  20. TITLE:=YAMON configuration utility
  21. URL:=http://meshcube.org/nylon/stable/sources/
  22. MAINTAINER:=Florian Fainelli <florian@openwrt.org>
  23. endef
  24. define Build/Configure
  25. endef
  26. define Package/yamonenv/install
  27. $(INSTALL_DIR) $(1)/usr/sbin
  28. $(CP) $(PKG_BUILD_DIR)/src/$(PKG_NAME) $(1)/usr/sbin/
  29. endef
  30. $(eval $(call BuildPackage,yamonenv))