Makefile 1018 B

1234567891011121314151617181920212223242526272829303132
  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:= libffi
  5. PKG_VERSION:= 3.0.13
  6. PKG_RELEASE:= 1
  7. PKG_MD5SUM:= 45f3b6dbc9ee7c7dfbbbc5feba571529
  8. PKG_DESCR:= Foreign Function Interface library
  9. PKG_SECTION:= libs
  10. PKG_BUILDDEP:= libffi-host
  11. PKG_URL:= http://sourceware.org/libffi/
  12. PKG_SITES:= ftp://sourceware.org/pub/libffi/
  13. PKG_OPTS:= dev
  14. include ${TOPDIR}/mk/host.mk
  15. include ${TOPDIR}/mk/package.mk
  16. $(eval $(call HOST_template,LIBFFI,libffi,${PKG_VERSION}-${PKG_RELEASE}))
  17. $(eval $(call PKG_template,LIBFFI,libffi,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS}))
  18. HOST_STYLE:= auto
  19. HOST_CONFIGURE_ARGS+= --disable-builddir
  20. CONFIGURE_ARGS+= --disable-builddir
  21. libffi-install:
  22. ${INSTALL_DIR} ${IDIR_LIBFFI}/usr/lib
  23. ${CP} ${WRKINST}/usr/lib/libffi.so* ${IDIR_LIBFFI}/usr/lib
  24. include ${TOPDIR}/mk/host-bottom.mk
  25. include ${TOPDIR}/mk/pkg-bottom.mk