Makefile 942 B

1234567891011121314151617181920212223242526272829303132
  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:= libwnck
  5. PKG_VERSION:= 43.0
  6. PKG_RELEASE:= 1
  7. PKG_HASH:= 905bcdb85847d6b8f8861e56b30cd6dc61eae67ecef4cd994a9f925a26a2c1fe
  8. PKG_DESCR:= window navigator construction kit
  9. PKG_SECTION:= libs/misc
  10. PKG_SITES:= https://download.gnome.org/sources/libwnck/43/
  11. PKG_OPTS:= dev
  12. include $(ADK_TOPDIR)/mk/package.mk
  13. $(eval $(call PKG_template,LIBWNCK,libwnck,$(PKG_VERSION)-$(PKG_RELEASE),$(PKG_DEPENDS),$(PKG_DESCR),$(PKG_SECTION),$(PKG_OPTS)))
  14. WRKBUILD= $(WRKDIR)/$(PKG_NAME)-obj
  15. CONFIG_STYLE:= meson
  16. BUILD_STYLE:= meson
  17. INSTALL_STYLE:= meson
  18. MESON_FLAGS+= -Dintrospection=disabled
  19. libwnck-install:
  20. $(INSTALL_DIR) $(IDIR_LIBWNCK)/usr/lib
  21. $(CP) $(WRKINST)/usr/lib/libwnck*.so* \
  22. $(IDIR_LIBWNCK)/usr/lib
  23. include $(ADK_TOPDIR)/mk/pkg-bottom.mk