Makefile 974 B

123456789101112131415161718192021222324252627
  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:= keybinder
  5. PKG_VERSION:= 0.3.2
  6. PKG_RELEASE:= 1
  7. PKG_HASH:= e6e3de4e1f3b201814a956ab8f16dfc8a262db1937ff1eee4d855365398c6020
  8. PKG_DESCR:= utility library registering global x keyboard shortcuts
  9. PKG_SECTION:= libs/misc
  10. PKG_SITES:= https://github.com/kupferlauncher/keybinder/releases/download/keybinder-3.0-v0.3.2/
  11. PKG_OPTS:= dev
  12. DISTFILES:= $(PKG_NAME)-3.0-$(PKG_VERSION).tar.gz
  13. WRKDIST= ${WRKDIR}/${PKG_NAME}-3.0-${PKG_VERSION}
  14. include $(ADK_TOPDIR)/mk/package.mk
  15. $(eval $(call PKG_template,KEYBINDER,keybinder,$(PKG_VERSION)-$(PKG_RELEASE),$(PKG_DEPENDS),$(PKG_DESCR),$(PKG_SECTION),$(PKG_OPTS)))
  16. keybinder-install:
  17. $(INSTALL_DIR) $(IDIR_KEYBINDER)/usr/lib
  18. $(CP) $(WRKINST)/usr/lib/libkeybinder*.so* \
  19. $(IDIR_KEYBINDER)/usr/lib
  20. include $(ADK_TOPDIR)/mk/pkg-bottom.mk