xref: /OK3568_Linux_fs/buildroot/package/opkg/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1comment "opkg needs a toolchain w/ wchar"
2	depends on BR2_USE_MMU
3	depends on !BR2_USE_WCHAR
4
5config BR2_PACKAGE_OPKG
6	bool "opkg"
7	depends on BR2_USE_MMU # fork()
8	depends on BR2_USE_WCHAR # libarchive
9	select BR2_PACKAGE_LIBARCHIVE
10	help
11	  Opkg is a lightweight package management system, based on
12	  ipkg. It is written in C and resembles apt/dpkg in
13	  operation. It is intended for use on embedded Linux devices.
14	  Opkg is maintained, stable, robust and conservative in its
15	  memory usage, despite its buggy ipkg ancestry. As best it
16	  can, opkg maintains backwards compatibility with ipkg and
17	  conforms to a subset of debian's policy manual regarding
18	  control files.
19
20	  https://code.google.com/archive/p/opkg/
21
22if BR2_PACKAGE_OPKG
23
24config BR2_PACKAGE_OPKG_GPG_SIGN
25	bool "gnupg support"
26	depends on BR2_PACKAGE_LIBGPG_ERROR_ARCH_SUPPORTS # libgpg-error
27	select BR2_PACKAGE_LIBGPGME
28	select BR2_PACKAGE_LIBGPG_ERROR
29	help
30	  Enable opkg package signature checking support using
31	  gnupg/libgpgme.
32
33endif
34