Makefile 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  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.1
  6. PKG_RELEASE:= 2
  7. PKG_HASH:= 97feeeadca5e21870fa4433bc953d1b3af3f698d5df8a428f68b73cd60aef6eb
  8. PKG_DESCR:= foreign function interface library
  9. PKG_SECTION:= libs/misc
  10. PKG_URL:= http://sourceware.org/libffi/
  11. PKG_SITES:= ftp://sourceware.org/pub/libffi/
  12. PKG_OPTS:= dev
  13. DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.gz
  14. include ${ADK_TOPDIR}/mk/host.mk
  15. include ${ADK_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. AUTOTOOL_STYLE:= autoreconf
  19. HOST_STYLE:= auto
  20. HOST_CONFIGURE_ARGS+= --disable-builddir --with-pic
  21. CONFIGURE_ARGS+= --disable-builddir --with-pic
  22. libffi-install:
  23. ${INSTALL_DIR} ${IDIR_LIBFFI}/usr/lib
  24. ${CP} ${WRKINST}/usr/lib*/libffi.so* ${IDIR_LIBFFI}/usr/lib
  25. include ${ADK_TOPDIR}/mk/host-bottom.mk
  26. include ${ADK_TOPDIR}/mk/pkg-bottom.mk