Makefile 825 B

1234567891011121314151617181920212223242526
  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:= libxkbfile
  5. PKG_VERSION:= 1.0.5
  6. PKG_RELEASE:= 1
  7. PKG_MD5SUM:= 8be68d830d227cbd52cbafe24cb4fa78
  8. PKG_DESCR:= an interface to read and manipulate description files the X11 keyboard configuration extension
  9. PKG_SECTION:= x11
  10. PKG_SITES:= ${MASTER_SITE_XORG}
  11. include $(TOPDIR)/mk/package.mk
  12. $(eval $(call PKG_template,LIBXKBFILE,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  13. CONFIGURE_STYLE= gnu
  14. BUILD_STYLE= auto
  15. INSTALL_STYLE= auto confprog
  16. post-install:
  17. ${INSTALL_DIR} ${IDIR_LIBXKBFILE}/usr/lib
  18. ${CP} ${WRKINST}/usr/lib/libxkbfile.so* ${IDIR_LIBXKBFILE}/usr/lib/
  19. include ${TOPDIR}/mk/pkg-bottom.mk