Makefile 851 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. # $Id$
  8. include $(TOPDIR)/rules.mk
  9. PKG_NAME:=yamonenv
  10. PKG_VERSION:=20051022
  11. PKG_RELEASE:=1
  12. PKG_SOURCE:=$(PKG_NAME)_gruen.4g__$(PKG_VERSION).tar.gz
  13. PKG_SOURCE_URL:=http://downloads.openwrt.org/sources/
  14. PKG_MD5SUM:=a3e4f24155aa3ba5aa502bc63fdaa6ad
  15. PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)
  16. include $(INCLUDE_DIR)/package.mk
  17. define Package/yamonenv
  18. SECTION:=utils
  19. CATEGORY:=Utilities
  20. DEPENDS:=@TARGET_au1000
  21. TITLE:=YAMON configuration utility
  22. URL:=http://meshcube.org/nylon/stable/sources/
  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))