Makefile 794 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 ${TOPDIR}/rules.mk
  4. PKG_NAME:= less
  5. PKG_VERSION:= 429
  6. PKG_RELEASE:= 1
  7. PKG_BUILDDEP+= ncurses
  8. PKG_MD5SUM:= 206f2f13b9b0a35e45df660fcb6af31d
  9. PKG_DESCR:= A text mode pager
  10. PKG_SECTION:= text
  11. PKG_DEPENDS:= libncurses
  12. PKG_URL:= http://www.greenwoodsoftware.com/less
  13. PKG_SITES:= http://www.greenwoodsoftware.com/less/
  14. include ${TOPDIR}/mk/package.mk
  15. $(eval $(call PKG_template,LESS,less,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  16. CONFIGURE_STYLE= gnu
  17. BUILD_STYLE= auto
  18. do-install:
  19. ${INSTALL_DIR} ${IDIR_LESS}/usr/bin
  20. ${INSTALL_BIN} ${WRKBUILD}/less ${IDIR_LESS}/usr/bin/
  21. include ${TOPDIR}/mk/pkg-bottom.mk