2017-01-30 14:55:17 +01:00
|
|
|
config BR2_PACKAGE_GIT_CRYPT
|
|
|
|
bool "git-crypt"
|
|
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
2018-08-19 09:18:21 +02:00
|
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # C++11
|
2018-08-28 13:17:42 +02:00
|
|
|
depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_64735 # exception_ptr
|
2017-01-30 14:55:17 +01:00
|
|
|
depends on BR2_USE_MMU # git
|
|
|
|
select BR2_PACKAGE_GIT # runtime
|
|
|
|
select BR2_PACKAGE_OPENSSL
|
|
|
|
help
|
|
|
|
git-crypt enables transparent encryption and decryption of
|
|
|
|
files in a git repository.
|
|
|
|
|
|
|
|
https://www.agwa.name/projects/git-crypt/
|
|
|
|
|
2018-08-19 09:18:21 +02:00
|
|
|
comment "git-crypt needs a toolchain w/ C++, gcc >= 4.9"
|
|
|
|
depends on !BR2_INSTALL_LIBSTDCPP \
|
|
|
|
|| !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
|
2017-01-30 14:55:17 +01:00
|
|
|
depends on BR2_USE_MMU
|
2018-08-28 13:17:42 +02:00
|
|
|
|
|
|
|
comment "git-crypt needs a toolchain not affected by GCC bug 64735"
|
|
|
|
depends on BR2_USE_MMU
|
|
|
|
depends on BR2_TOOLCHAIN_HAS_GCC_BUG_64735
|