Does this PKGBUILD here,
_dartmin="3.11.0"
_dartmax="3.12.0"
(...)
makedepends=(
"dart>=${_dartmin}"
"dart<${_dartmax}"
"jq"
"gradle"
"unzip"
"tar"
)
(...) build for any of you?
I only managed to build it if I changed the makedepends to "read":
makedepends=(
"dart>${_dartmin}"
"dart<=${_dartmax}"
"jq"
"gradle"
"unzip"
"tar"
)
Note the swapped '=' from the _dartmin condition to the _dartmax'one
The question remains, though, will this be hazardous?
Pinned Comments
WithTheBraid commented on 2025-11-11 10:15 (UTC)
This package is deprecated in favor of
aur/flutterwhich now contains all required artifacts on its own. This PKGBUILD will be kept as is in order to ensure seamless builds of old Flutter version in future.