Makefile 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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 ${ADK_TOPDIR}/rules.mk
  4. PKG_NAME:= libffi
  5. PKG_VERSION:= 3.4.2
  6. PKG_RELEASE:= 1
  7. PKG_HASH:= 540fb721619a6aba3bdeef7d940d8e9e0e6d2c193595bc243241b77ff9e93620
  8. PKG_DESCR:= foreign function interface library
  9. PKG_SECTION:= libs/misc
  10. HOST_BUILDDEP:= libtool-host
  11. PKG_URL:= http://sourceware.org/libffi/
  12. PKG_SITES:= https://github.com/libffi/libffi/releases/download/v${PKG_VERSION}/
  13. PKG_OPTS:= dev
  14. DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.gz
  15. include ${ADK_TOPDIR}/mk/host.mk
  16. include ${ADK_TOPDIR}/mk/package.mk
  17. $(eval $(call HOST_template,LIBFFI,libffi,${PKG_VERSION}-${PKG_RELEASE}))
  18. $(eval $(call PKG_template,LIBFFI,libffi,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS}))
  19. AUTOTOOL_STYLE:= autoreconf
  20. HOST_STYLE:= auto
  21. HOST_CONFIGURE_ARGS+= --disable-builddir --with-pic --disable-symvers
  22. CONFIGURE_ARGS+= --disable-builddir --with-pic --disable-symvers
  23. ifeq ($(ADK_PACKAGE_OPENJDK7),y)
  24. CONFIGURE_ARGS+= --enable-static
  25. endif
  26. libffi-install:
  27. ${INSTALL_DIR} ${IDIR_LIBFFI}/usr/lib
  28. ${CP} ${WRKINST}/usr/lib*/libffi.so* ${IDIR_LIBFFI}/usr/lib
  29. include ${ADK_TOPDIR}/mk/host-bottom.mk
  30. include ${ADK_TOPDIR}/mk/pkg-bottom.mk