Makefile 987 B

123456789101112131415161718192021222324252627282930
  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:= libfm
  5. PKG_VERSION:= 1.4.1
  6. PKG_RELEASE:= 1
  7. PKG_HASH:= 5caa820443d558974648583e37b4d956ae67a6e3df23493f99c2d0e26a11c665
  8. PKG_DESCR:= library needed for pcmanfm
  9. PKG_SECTION:= x11/lxde
  10. PKG_DEPENDS:= llibgtk3 pango menu-cache dbus-glib
  11. PKG_BUILDDEP:= vala-host intltool-host libgtk3 pango menu-cache dbus-glib
  12. PKG_URL:= https://lxde.org/
  13. PKG_SITES:= https://github.com/lxde/releases/raw/refs/heads/master/releases/
  14. PKG_OPTS:= dev
  15. include $(ADK_TOPDIR)/mk/package.mk
  16. $(eval $(call PKG_template,LIBFM,libfm,$(PKG_VERSION)-$(PKG_RELEASE),$(PKG_DEPENDS),$(PKG_DESCR),$(PKG_SECTION),$(PKG_OPTS)))
  17. CONFIGURE_ARGS+= --with-gtk=3 \
  18. --enable-udisks
  19. libfm-install:
  20. $(INSTALL_DIR) $(IDIR_LIBFM)/usr/lib
  21. $(CP) $(WRKINST)/usr/lib/libfm*.so* \
  22. $(IDIR_LIBFM)/usr/lib
  23. include $(ADK_TOPDIR)/mk/pkg-bottom.mk