Makefile 871 B

1234567891011121314151617181920212223242526272829
  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:= picocom
  5. PKG_VERSION:= 1.7
  6. PKG_RELEASE:= 1
  7. PKG_MD5SUM:= 8eaba1d31407e8408674d6e57af447ef
  8. PKG_DESCR:= minimal dumb-terminal emulation program
  9. PKG_SECTION:= serial
  10. PKG_URL:= http://code.google.com/p/picocom
  11. PKG_SITES:= http://picocom.googlecode.com/files/
  12. DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.gz
  13. include ${TOPDIR}/mk/package.mk
  14. $(eval $(call PKG_template,PICOCOM,picocom,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  15. CONFIG_STYLE:= manual
  16. INSTALL_STYLE:= manual
  17. ALL_TARGET:= picocom
  18. do-install:
  19. ${INSTALL_DIR} ${IDIR_PICOCOM}/usr/bin
  20. ${INSTALL_BIN} ${WRKBUILD}/picocom ${IDIR_PICOCOM}/usr/bin/
  21. include ${TOPDIR}/mk/pkg-bottom.mk