Makefile 1.5 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.6
  6. PKG_RELEASE:= 1
  7. PKG_MD5SUM:= 08af805fd59f68d9ad00a2f878cf820e
  8. PKG_DESCR:= fast version control system
  9. PKG_SECTION:= misc
  10. PKG_DEPENDS:= libopenssl libcurl libexpat
  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 \
  17. NO_CROSS_DIRECTORY_HARDLINKS=1 \
  18. CURLDIR=${STAGING_DIR} EXPATDIR=${STAGING_DIR}
  19. XAKE_FLAGS+= uname_S=Linux uname_O=GNU/Linux
  20. CONFIGURE_ENV+= ac_cv_c_c99_format=yes \
  21. ac_cv_fread_reads_directories=no \
  22. ac_cv_snprintf_returns_bogus=no
  23. post-install:
  24. $(INSTALL_DIR) $(IDIR_GIT)/usr/bin $(IDIR_GIT)/usr/libexec/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/libexec/git-core/* $(IDIR_GIT)/usr/libexec/git-core
  34. include ${TOPDIR}/mk/pkg-bottom.mk