Makefile 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  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.1
  6. PKG_RELEASE:= 1
  7. PKG_MD5SUM:= f5898b29bbfd70502831a212d9249d10
  8. PKG_DESCR:= foreign function interface library
  9. PKG_SECTION:= libs/misc
  10. PKG_BUILDDEP:= autotool
  11. HOST_BUILDDEP:= autotool
  12. PKG_URL:= http://sourceware.org/libffi/
  13. PKG_SITES:= ftp://sourceware.org/pub/libffi/
  14. PKG_OPTS:= dev
  15. DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.gz
  16. include ${TOPDIR}/mk/host.mk
  17. include ${TOPDIR}/mk/package.mk
  18. $(eval $(call HOST_template,LIBFFI,libffi,${PKG_VERSION}-${PKG_RELEASE}))
  19. $(eval $(call PKG_template,LIBFFI,libffi,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS}))
  20. AUTOTOOL_STYLE:= autoreconf
  21. HOST_STYLE:= auto
  22. HOST_CONFIGURE_ARGS+= --disable-builddir --with-pic
  23. CONFIGURE_ARGS+= --disable-builddir --with-pic
  24. libffi-install:
  25. ${INSTALL_DIR} ${IDIR_LIBFFI}/usr/lib
  26. ${CP} ${WRKINST}/usr/lib/libffi.so* ${IDIR_LIBFFI}/usr/lib
  27. include ${TOPDIR}/mk/host-bottom.mk
  28. include ${TOPDIR}/mk/pkg-bottom.mk