Files
chromebrew/packages/flutter.rb
chromebrew-actions[bot] 1a29f602db flutter: 3.41.1 → 3.41.2 (#14737)
* flutter -> 3.41.2 in updater-flutter-3.41.2

* updater-flutter-3.41.2: Package File Update Run on linux/amd64 container.

---------

Co-authored-by: github-merge-queue <github-merge-queue@users.noreply.github.com>
Co-authored-by: chromebrew-actions[bot] <220035932+chromebrew-actions[bot]@users.noreply.github.com>
Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
2026-02-20 01:03:46 +00:00

41 lines
1.4 KiB
Ruby

require 'package'
class Flutter < Package
description "Flutter is Google's UI toolkit for building beautiful, natively compiled applications for mobile, web, and desktop from a single codebase."
homepage 'https://flutter.dev/'
version '3.41.2'
license 'BSD-3'
compatibility 'x86_64'
source_url "https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_#{version}-stable.tar.xz"
source_sha256 '4a04f8a6152986d14fc137ffaf98106ca743c0f9ab66f1bc2f20ee84eb573e5c'
depends_on 'libglu'
no_compile_needed
no_shrink
def self.preflight
# Need at least 3.65 gb of free disk space to install.
MiscFunctions.check_free_disk_space(3919157657)
end
def self.install
FileUtils.mkdir_p CREW_DEST_HOME
FileUtils.mkdir_p "#{CREW_DEST_PREFIX}/bin"
FileUtils.mkdir_p "#{CREW_DEST_PREFIX}/share/flutter"
FileUtils.cp_r Dir['.'], "#{CREW_DEST_PREFIX}/share/flutter"
FileUtils.touch "#{CREW_DEST_HOME}/.flutter_tool_state"
FileUtils.ln_sf "#{CREW_PREFIX}/share/flutter/bin/dart", "#{CREW_DEST_PREFIX}/bin/dart" unless File.exist? "#{CREW_PREFIX}/bin/dart"
FileUtils.ln_sf "#{CREW_PREFIX}/share/flutter/bin/flutter", "#{CREW_DEST_PREFIX}/bin/flutter"
end
def self.postinstall
ExitMessage.add "\nType 'flutter' to get started.\n"
end
def self.postremove
Package.agree_to_remove("#{HOME}/.flutter")
Package.agree_to_remove("#{CREW_PREFIX}/share/flutter")
end
end