Makefile 623 B

12345678910111213141516171819
  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. include ${TOPDIR}/toolchain/mpc/Makefile.inc
  5. PKG_DESCR:= GNU multiprecision arithmetic library
  6. PKG_SECTION:= libs
  7. PKG_URL:= http://www.multiprecision.org/
  8. include ${TOPDIR}/mk/package.mk
  9. $(eval $(call PKG_template,LIBMPC,libmpc,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  10. post-install:
  11. ${INSTALL_DIR} ${IDIR_LIBMPC}/usr/lib
  12. ${CP} ${WRKINST}/usr/lib/libmpc.so* ${IDIR_LIBMPC}/usr/lib/
  13. include ${TOPDIR}/mk/pkg-bottom.mk