Makefile 967 B

1234567891011121314151617181920212223242526272829303132
  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:= cvs
  5. PKG_VERSION:= 1.11.23
  6. PKG_RELEASE:= 1
  7. PKG_MD5SUM:= bf185eb51b5918330a04671c3f3cccde
  8. PKG_DESCR:= concurrent version system
  9. PKG_SECTION:= scm
  10. PKG_URL:= http://www.nongnu.org/cvs/
  11. PKG_SITES:= http://ftp.gnu.org/non-gnu/cvs/source/stable/${PKG_VERSION}/
  12. include $(TOPDIR)/mk/package.mk
  13. $(eval $(call PKG_template,CVS,$(PKG_NAME),$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  14. #CONFIG_STYLE:= manual
  15. # use following to add ./configure options
  16. #CONFIGURE_ARGS+= --disable-foo
  17. # overwrite any configure variables
  18. #CONFIGURE_ENV+= ac_cv_func_setpgrp_void=yes
  19. #BUILD_STYLE:= manual
  20. #INSTALL_STYLE:= manual
  21. post-install:
  22. $(INSTALL_DIR) $(IDIR_CVS)/usr/bin
  23. $(INSTALL_BIN) $(WRKINST)/usr/bin/cvs \
  24. $(IDIR_CVS)/usr/bin
  25. include ${TOPDIR}/mk/pkg-bottom.mk