Makefile 972 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  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_HASH:=466eca9cdad2c15e957fb9ce7d0b6927ecd17d85c4cc2dff37e97a3e6b209c67
  14. PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)
  15. PKG_FLAGS:=nonshared
  16. include $(INCLUDE_DIR)/package.mk
  17. define Package/yamonenv
  18. SECTION:=utils
  19. CATEGORY:=Utilities
  20. SUBMENU:=Boot Loaders
  21. DEPENDS:=@TARGET_au1000
  22. TITLE:=YAMON configuration utility
  23. URL:=http://meshcube.org/nylon/stable/sources/
  24. MAINTAINER:=Florian Fainelli <florian@openwrt.org>
  25. endef
  26. define Build/Configure
  27. endef
  28. define Package/yamonenv/install
  29. $(INSTALL_DIR) $(1)/usr/sbin
  30. $(CP) $(PKG_BUILD_DIR)/src/$(PKG_NAME) $(1)/usr/sbin/
  31. endef
  32. $(eval $(call BuildPackage,yamonenv))