Makefile 1.1 KB

12345678910111213141516171819202122232425262728293031
  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:= libtool
  5. PKG_VERSION:= 1.5.22
  6. PKG_RELEASE:= 1
  7. PKG_MD5SUM:= 8e0ac9797b62ba4dcc8a2fb7936412b0
  8. PKG_DESCR:= a generic dynamic object loading library
  9. PKG_SECTION:= libs
  10. PKG_URL:= http://www.gnu.org/software/libtool
  11. PKG_SITES:= ${MASTER_SITE_GNU:=libtool/}
  12. include ${TOPDIR}/mk/package.mk
  13. $(eval $(call PKG_template,LIBTOOL,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  14. $(eval $(call PKG_template,LIBLTDL,libltdl,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  15. CONFIGURE_STYLE= gnu
  16. BUILD_STYLE= auto
  17. INSTALL_STYLE= auto
  18. post-install:
  19. ${INSTALL_DIR} ${IDIR_LIBLTDL}/usr/lib
  20. ${CP} ${WRKINST}/usr/lib/libltdl.so.* ${IDIR_LIBLTDL}/usr/lib/
  21. ${INSTALL_DIR} ${IDIR_LIBTOOL}/usr/bin
  22. ${INSTALL_BIN} ${WRKINST}/usr/bin/libtool ${IDIR_LIBTOOL}/usr/bin
  23. ${INSTALL_BIN} ${WRKINST}/usr/bin/libtoolize ${IDIR_LIBTOOL}/usr/bin
  24. include ${TOPDIR}/mk/pkg-bottom.mk