1
0

Makefile 920 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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. SUBMENU:=Boot Loaders
  20. DEPENDS:=@TARGET_au1000
  21. TITLE:=YAMON configuration utility
  22. URL:=http://meshcube.org/nylon/stable/sources/
  23. MAINTAINER:=Florian Fainelli <florian@openwrt.org>
  24. endef
  25. define Build/Configure
  26. endef
  27. define Package/yamonenv/install
  28. $(INSTALL_DIR) $(1)/usr/sbin
  29. $(CP) $(PKG_BUILD_DIR)/src/$(PKG_NAME) $(1)/usr/sbin/
  30. endef
  31. $(eval $(call BuildPackage,yamonenv))