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