Makefile 1009 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. #
  2. # Copyright (C) 2009-2014 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:=intltool
  9. PKG_LIBVER:=0.40
  10. PKG_VERSION:=$(PKG_LIBVER).6
  11. PKG_RELEASE:=3
  12. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
  13. PKG_SOURCE_URL:=@GNOME/intltool/$(PKG_LIBVER)
  14. PKG_MD5SUM:=69bc0353323112f42ad4f9cf351bc3e5
  15. PKG_MAINTAINER:=Ted Hess <thess@kitschensync.net>
  16. PKG_HOST_ONLY:=1
  17. HOST_FIXUP:=autoreconf
  18. include $(INCLUDE_DIR)/host-build.mk
  19. include $(INCLUDE_DIR)/package.mk
  20. define Package/intltool
  21. SECTION:=libs
  22. CATEGORY:=Libraries
  23. TITLE:=set of tools to centralize translation using GNU gettext
  24. URL:=http://www.freedesktop.org/wiki/Software/intltool
  25. BUILDONLY:=1
  26. endef
  27. define Package/intltool/description
  28. intltool is a set of tools to centralize translation of many different
  29. file formats using GNU gettext-compatible PO files.
  30. endef
  31. $(eval $(call BuildPackage,intltool))
  32. $(eval $(call HostBuild))