Makefile 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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:= git
  5. PKG_VERSION:= 1.7.3.2
  6. PKG_RELEASE:= 1
  7. PKG_MD5SUM:= 9b4bc13cd26cd8feb6b2dce8eefac145
  8. PKG_DESCR:= fast version control system
  9. PKG_SECTION:= scm
  10. PKG_DEPENDS:= libopenssl libcurl libexpat libpthread
  11. PKG_BUILDDEP:= openssl curl expat
  12. PKG_URL:= http://git-scm.com/
  13. PKG_SITES:= http://kernel.org/pub/software/scm/git/
  14. include $(TOPDIR)/mk/package.mk
  15. $(eval $(call PKG_template,GIT,${PKG_NAME},$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  16. MAKE_ENV+= NO_PERL=1 NO_NSEC=1 NO_TCLTK=1 NO_PYTHON=1 \
  17. CURLDIR=${STAGING_TARGET_DIR} EXPATDIR=${STAGING_TARGET_DIR}
  18. XAKE_FLAGS+= uname_S=Linux uname_O=GNU/Linux
  19. CONFIGURE_ENV+= ac_cv_c_c99_format=yes \
  20. ac_cv_fread_reads_directories=no \
  21. ac_cv_snprintf_returns_bogus=no
  22. post-install:
  23. $(INSTALL_DIR) $(IDIR_GIT)/usr/bin $(IDIR_GIT)/usr/libexec/git-core
  24. $(INSTALL_DIR) $(IDIR_GIT)/usr/share/git-core/templates
  25. $(CP) $(WRKINST)/usr/share/git-core/templates/* \
  26. $(IDIR_GIT)/usr/share/git-core/templates
  27. $(CP) $(WRKINST)/usr/bin/git $(IDIR_GIT)/usr/bin
  28. $(CP) $(WRKINST)/usr/bin/git-shell $(IDIR_GIT)/usr/bin
  29. $(CP) $(WRKINST)/usr/bin/git-receive-pack $(IDIR_GIT)/usr/bin
  30. $(CP) $(WRKINST)/usr/bin/git-upload-pack $(IDIR_GIT)/usr/bin
  31. $(CP) $(WRKINST)/usr/bin/git-upload-archive $(IDIR_GIT)/usr/bin
  32. ${CP} $(WRKINST)/usr/libexec/git-core/* $(IDIR_GIT)/usr/libexec/git-core
  33. include ${TOPDIR}/mk/pkg-bottom.mk