Makefile 749 B

12345678910111213141516171819202122232425
  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:= libSM
  5. PKG_VERSION:= 1.2.1
  6. PKG_RELEASE:= 2
  7. PKG_MD5SUM:= 1d507651e9fa50aab7ef11be9e0e2f20
  8. PKG_DESCR:= X11 Session Management library
  9. PKG_SECTION:= x11/libs
  10. PKG_DEPENDS:= libuuid
  11. PKG_BUILDDEP:= libICE util-linux
  12. PKG_SITES:= ${MASTER_SITE_XORG}
  13. PKG_OPTS:= dev
  14. include $(TOPDIR)/mk/package.mk
  15. $(eval $(call PKG_template,LIBSM,libsm,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS}))
  16. libsm-install:
  17. ${INSTALL_DIR} ${IDIR_LIBSM}/usr/lib
  18. ${CP} ${WRKINST}/usr/lib/libSM.so* ${IDIR_LIBSM}/usr/lib
  19. include ${TOPDIR}/mk/pkg-bottom.mk