1config 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
11	  https://github.com/libgit2/libgit2
12
13comment "libgit2 needs a toolchain w/ dynamic library"
14	depends on BR2_STATIC_LIBS
15
16if BR2_PACKAGE_LIBGIT2
17
18config BR2_PACKAGE_LIBGIT2_CLI
19	bool "enable command line interface (git2_cli)"
20	help
21	  Enable a command-line interface for libgit2.
22	  It aims to be git-compatible.
23
24endif
25