1comment "rpm needs a toolchain w/ dynamic library, threads and lua >= 5.3" 2 depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS \ 3 || !BR2_PACKAGE_LUA || BR2_PACKAGE_LUA_5_1 4 depends on BR2_PACKAGE_BUSYBOX_SHOW_OTHERS 5 depends on BR2_USE_MMU 6 7config BR2_PACKAGE_RPM 8 bool "rpm" 9 depends on !BR2_STATIC_LIBS # dlfcn.h 10 depends on BR2_PACKAGE_BUSYBOX_SHOW_OTHERS 11 depends on BR2_PACKAGE_LUA && !BR2_PACKAGE_LUA_5_1 12 depends on BR2_TOOLCHAIN_HAS_THREADS 13 depends on BR2_USE_MMU # fork() 14 select BR2_PACKAGE_OPENSSL if !BR2_PACKAGE_LIBGCRYPT 15 select BR2_PACKAGE_FILE 16 select BR2_PACKAGE_POPT 17 select BR2_PACKAGE_ZLIB 18 help 19 The RPM Package Manager (RPM). 20 21 http://www.rpm.org/ 22 23if BR2_PACKAGE_RPM 24 25comment "rpm2archive support needs a toolchain w/ wchar" 26 depends on !BR2_USE_WCHAR 27 28config BR2_PACKAGE_RPM_RPM2ARCHIVE 29 bool "rpm2archive command" 30 default y 31 depends on BR2_USE_WCHAR 32 select BR2_PACKAGE_LIBARCHIVE 33 help 34 Enable rpm2archive 35 36endif 37