Makefile 868 B

1234567891011121314151617181920212223242526272829
  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:= libusb
  5. PKG_VERSION:= 1.0.8
  6. PKG_RELEASE:= 1
  7. PKG_MD5SUM:= 37d34e6eaa69a4b645a19ff4ca63ceef
  8. PKG_DESCR:= a library for accessing Linux USB devices
  9. PKG_SECTION:= libs
  10. PKG_URL:= http://libusb.wiki.sourceforge.net/
  11. PKG_SITES:= ${MASTER_SITE_SOURCEFORGE:=libusb/}
  12. ifeq ($(ADK_STATIC),y)
  13. PKG_OPTS:= libonly
  14. endif
  15. DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.bz2
  16. include ${TOPDIR}/mk/package.mk
  17. $(eval $(call PKG_template,LIBUSB,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS}))
  18. post-install:
  19. ${INSTALL_DIR} ${IDIR_LIBUSB}/usr/lib
  20. ${CP} ${WRKINST}/usr/lib/libusb*.so* ${IDIR_LIBUSB}/usr/lib/
  21. include ${TOPDIR}/mk/pkg-bottom.mk