kumquat-buildroot/package/opkg/Config.in
Vanya Sergeev 2f9bbe6599 opkg: bump to version 0.3.0
Remove "Disable tests and manpages" patch because opkg no longer
builds C tests into libopkg as of commit
ef8ae066cfa898b6366198e429cbeb4c94c92939.

Remove "Fix libtool issue with recent libtool" patch because the patch
comments indicate that it is no longer required with opkg version
0.3.0.

Select libarchive package dependency, as opkg requires it as of
release opkg-0.3.0-rc0 (see the opkg NEWS file).

[Thomas: add missing wchar dependency inherited from libarchive.]

Signed-off-by: Vanya Sergeev <vsergeev@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2015-06-06 03:08:29 +02:00

31 lines
907 B
Plaintext

comment "opkg needs a toolchain w/ wchar"
depends on BR2_USE_MMU
depends on !BR2_USE_WCHAR
config BR2_PACKAGE_OPKG
bool "opkg"
select BR2_PACKAGE_LIBARCHIVE
depends on BR2_USE_MMU # fork()
depends on BR2_USE_WCHAR # libarchive
help
Opkg is a lightweight package management system, based on ipkg. It is
written in C and resembles apt/dpkg in operation. It is intended for
use on embedded Linux devices.
Opkg is maintained, stable, robust and conservative in its memory
usage, despite its buggy ipkg ancestry. As best it can, opkg
maintains backwards compatibility with ipkg and conforms to a subset
of debian's policy manual regarding control files.
http://code.google.com/p/opkg/
if BR2_PACKAGE_OPKG
config BR2_PACKAGE_OPKG_GPG_SIGN
bool "gnupg support"
select BR2_PACKAGE_LIBGPGME
help
Enable opkg package signature checking support using
gnupg/libgpgme.
endif