flutter-sdk-bin is a collection of host tools and plugins used to compile flutter applications. - As this is a collection of pre-compiled tools, append -bin to the end of the package name. - We must set the HOME directory variable to the sdk directory or else the flutter dart binaries place .dart, .dart-sdk, and .flutter in ~/. - set --clear-features, --no-analytics and --disable-telemetry first to disable google tracking as soon as possible. Signed-off-by: Adam Duskett <adam.duskett@amarulasolutions.com> [yann.morin.1998@free.fr: - set FLUTTER_SDK_BIN_PUB_CACHE for other packages to make use of it ] Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
17 lines
571 B
Plaintext
17 lines
571 B
Plaintext
# All host rust packages should depend on this option
|
|
config BR2_PACKAGE_HOST_FLUTTER_SDK_BIN_ARCH_SUPPORTS
|
|
bool
|
|
default y if BR2_HOSTARCH = "x86_64"
|
|
|
|
config BR2_PACKAGE_HOST_FLUTTER_SDK_BIN
|
|
bool "host flutter-sdk-bin"
|
|
depends on BR2_PACKAGE_HOST_FLUTTER_SDK_BIN_ARCH_SUPPORTS
|
|
help
|
|
Flutter is Google's SDK for crafting beautiful, fast user
|
|
experiences for mobile, web, and desktop from a single
|
|
codebase. Flutter works with existing code, is used by
|
|
developers and organizations around the world, and is
|
|
free and open source.
|
|
|
|
https://flutter.dev/
|