Makefile 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. include $(ADK_TOPDIR)/rules.mk
  4. PKG_NAME:= pango
  5. PKG_VERSION:= 1.50.4
  6. PKG_EXTRAVER:= 1.50
  7. PKG_RELEASE:= 1
  8. PKG_HASH:= f4ad63e87dc2b145300542a4fb004d07a9f91b34152fae0ddbe50ecdd851c162
  9. PKG_DESCR:= library for laying out and rendering of text
  10. PKG_SECTION:= libs/fonts
  11. PKG_BUILDDEP:= libXft glib cairo harfbuzz fontconfig fribidi
  12. HOST_BUILDDEP:= cairo-host harfbuzz-host glib-host meson-host
  13. PKG_NEEDS:= c++
  14. PKG_URL:= http://www.pango.org/
  15. PKG_SITES:= $(MASTER_SITE_GNOME:=pango/$(PKG_EXTRAVER)/)
  16. PKG_OPTS:= dev
  17. include $(ADK_TOPDIR)/mk/host.mk
  18. include $(ADK_TOPDIR)/mk/package.mk
  19. $(eval $(call HOST_template,PANGO,pango,$(PKG_VERSION)-$(PKG_RELEASE)))
  20. $(eval $(call PKG_template,PANGO,pango,$(PKG_VERSION)-$(PKG_RELEASE),$(PKG_DEPENDS),$(PKG_DESCR),$(PKG_SECTION),$(PKG_OPTS)))
  21. WRKBUILD= $(WRKDIR)/$(PKG_NAME)-obj
  22. HOST_STYLE:= meson
  23. CONFIG_STYLE:= meson
  24. BUILD_STYLE:= meson
  25. INSTALL_STYLE:= meson
  26. pango-install:
  27. $(INSTALL_DIR) $(IDIR_PANGO)/etc/pango $(IDIR_PANGO)/usr/lib
  28. $(CP) $(WRKINST)/usr/lib/libpango*.so* \
  29. $(IDIR_PANGO)/usr/lib
  30. include $(ADK_TOPDIR)/mk/host-bottom.mk
  31. include $(ADK_TOPDIR)/mk/pkg-bottom.mk