Makefile 890 B

12345678910111213141516171819202122232425262728
  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:= picocom
  5. PKG_VERSION:= 14288582f10e662732c32eb67ab49b64fd6206c2
  6. PKG_RELEASE:= 1
  7. PKG_DESCR:= minimal dumb-terminal emulation program
  8. PKG_SECTION:= sys/serial
  9. PKG_URL:= https://github.com/npat-efault/picocom/
  10. PKG_SITES:= https://github.com/npat-efault/picocom.git
  11. DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.gz
  12. include ${ADK_TOPDIR}/mk/package.mk
  13. $(eval $(call PKG_template,PICOCOM,picocom,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  14. CONFIG_STYLE:= manual
  15. INSTALL_STYLE:= manual
  16. ALL_TARGET:= picocom
  17. do-install:
  18. ${INSTALL_DIR} ${IDIR_PICOCOM}/usr/bin
  19. ${INSTALL_BIN} ${WRKBUILD}/picocom ${IDIR_PICOCOM}/usr/bin/
  20. include ${ADK_TOPDIR}/mk/pkg-bottom.mk