Config.in 661 B

123456789101112131415161718192021222324
  1. config BR2_PACKAGE_LIBGIT2
  2. bool "libgit2"
  3. depends on !BR2_STATIC_LIBS # libhttpparser
  4. select BR2_PACKAGE_LIBHTTPPARSER
  5. select BR2_PACKAGE_ZLIB
  6. help
  7. libgit2 is a portable, pure C implementation of the Git core
  8. methods provided as a linkable library with a solid API,
  9. allowing to build Git functionality into your application.
  10. https://github.com/libgit2/libgit2
  11. comment "libgit2 needs a toolchain w/ dynamic library"
  12. depends on BR2_STATIC_LIBS
  13. if BR2_PACKAGE_LIBGIT2
  14. config BR2_PACKAGE_LIBGIT2_CLI
  15. bool "enable command line interface (git2_cli)"
  16. help
  17. Enable a command-line interface for libgit2.
  18. It aims to be git-compatible.
  19. endif