Makefile 960 B

12345678910111213141516171819202122232425262728293031
  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 $(TOPDIR)/rules.mk
  4. PKG_NAME:= xbindkeys
  5. PKG_VERSION:= 1.8.3
  6. PKG_RELEASE:= 1
  7. PKG_MD5SUM:= 393dd74f85850a4ba0803b5a78bc598b
  8. PKG_DESCR:= keybindings for X11
  9. PKG_SECTION:= x11/apps
  10. PKG_SITES:= http://openadk.org/distfiles/
  11. include $(TOPDIR)/mk/package.mk
  12. $(eval $(call PKG_template,XBINDKEYS,$(PKG_NAME),$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  13. CONFIGURE_ARGS+= --disable-guile \
  14. --disable-tk
  15. CONFIGURE_ENV+= ac_cv_func_malloc_0_nonnull=yes
  16. #BUILD_STYLE:= manual
  17. #INSTALL_STYLE:= manual
  18. # please install all files and directories to the package dir
  19. post-install:
  20. $(INSTALL_DIR) $(IDIR_XBINDKEYS)/usr/bin
  21. $(INSTALL_BIN) $(WRKINST)/usr/bin/xbindkeys \
  22. $(IDIR_XBINDKEYS)/usr/bin
  23. # please remove ALL above comments, before commiting
  24. include ${TOPDIR}/mk/pkg-bottom.mk