Makefile 959 B

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:= readline
  5. PKG_VERSION:= 5.2
  6. PKG_RELEASE:= 1
  7. PKG_BUILDDEP+= ncurses
  8. PKG_MD5SUM:= e39331f32ad14009b9ff49cc10c5e751
  9. PKG_DESCR:= Command line editing library
  10. PKG_SECTION:= libs
  11. PKG_DEPENDS:= libncurses
  12. PKG_SITES:= ${MASTER_SITE_GNU:=readline/}
  13. include ${TOPDIR}/mk/package.mk
  14. $(eval $(call PKG_template,LIBREADLINE,libreadline,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  15. CONFIGURE_STYLE:= gnu
  16. CONFIGURE_ARGS+= --with-curses
  17. BUILD_STYLE:= auto
  18. INSTALL_STYLE:= auto
  19. post-install:
  20. ${INSTALL_DIR} ${IDIR_LIBREADLINE}/usr/lib
  21. ${CP} ${WRKINST}/usr/lib/libhistory.so.* ${IDIR_LIBREADLINE}/usr/lib/
  22. ${CP} ${WRKINST}/usr/lib/libreadline.so.* ${IDIR_LIBREADLINE}/usr/lib/
  23. chmod u+w ${IDIR_LIBREADLINE}/usr/lib/*
  24. include ${TOPDIR}/mk/pkg-bottom.mk