Makefile 719 B

1234567891011121314151617181920212223242526272829303132
  1. #
  2. # Copyright (C) 2011 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:=xfce-macros
  9. PKG_VERSION:=4.8.0
  10. PKG_SOURCE_URL:=http://archive.xfce.org/xfce/4.8/src
  11. PKG_SOURCE:=xfce4-dev-tools-$(PKG_VERSION).tar.bz2
  12. PKG_MD5SUM:=9591299c49d92d00ba47974c42a735fa
  13. HOST_BUILD_DIR:=$(BUILD_DIR_HOST)/xfce4-dev-tools-$(PKG_VERSION)
  14. include $(INCLUDE_DIR)/host-build.mk
  15. define Host/Configure
  16. endef
  17. define Host/Compile
  18. endef
  19. define Host/Install
  20. $(INSTALL_DIR) $(STAGING_DIR_HOST)/share/aclocal
  21. $(INSTALL_DATA) $(HOST_BUILD_DIR)/m4macros/*.m4 $(STAGING_DIR_HOST)/share/aclocal/
  22. endef
  23. $(eval $(call HostBuild))