Makefile 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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.6.5.4
  6. PKG_RELEASE:= 1
  7. PKG_MD5SUM:= 0b3062212857b5778113aa2d4dfd65e2
  8. PKG_DESCR:= fast version control system
  9. PKG_SECTION:= misc
  10. PKG_DEPENDS:= openssl curl
  11. PKG_URL:= http://git-scm.com
  12. PKG_SITES:= http://kernel.org/pub/software/scm/git/
  13. include $(TOPDIR)/mk/package.mk
  14. $(eval $(call PKG_template,GIT,${PKG_NAME},$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  15. MAKE_ENV+= NO_PERL=1 NO_NSEC=1 NO_TCLTK=1
  16. XAKE_FLAGS+= V=1
  17. CONFIGURE_STYLE:= gnu
  18. CONFIGURE_ENV+= ac_cv_c_c99_format=yes \
  19. ac_cv_fread_reads_directories=no \
  20. ac_cv_snprintf_returns_bogus=no
  21. BUILD_STYLE:= auto
  22. INSTALL_STYLE:= auto
  23. post-install:
  24. $(INSTALL_DIR) $(IDIR_GIT)/usr/bin $(IDIR_GIT)/usr/sbin/git-core
  25. $(INSTALL_DIR) $(IDIR_GIT)/usr/share/git-core/templates
  26. $(CP) $(WRKINST)/usr/share/git-core/templates/* \
  27. $(IDIR_GIT)/usr/share/git-core/templates
  28. $(CP) $(WRKINST)/usr/bin/git $(IDIR_GIT)/usr/bin
  29. $(CP) $(WRKINST)/usr/bin/git-shell $(IDIR_GIT)/usr/bin
  30. $(CP) $(WRKINST)/usr/bin/git-receive-pack $(IDIR_GIT)/usr/bin
  31. $(CP) $(WRKINST)/usr/bin/git-upload-pack $(IDIR_GIT)/usr/bin
  32. $(CP) $(WRKINST)/usr/bin/git-upload-archive $(IDIR_GIT)/usr/bin
  33. ${CP} $(WRKINST)/usr/sbin/git-core/* $(IDIR_GIT)/usr/sbin/git-core
  34. include ${TOPDIR}/mk/pkg-bottom.mk