mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-13 01:18:14 -05:00
* Add unbuilt flutter to updater-flutter-3.38.4 * updater-flutter-3.38.4: 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] <chromebrew-actions[bot]@users.noreply.github.com>
37 lines
1.3 KiB
Ruby
37 lines
1.3 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.38.4'
|
|
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 '1deb32975560b12b580a7b57a46c5043b5b855403ef4b9b783bd36f8b7b9686a'
|
|
|
|
depends_on 'libglu'
|
|
|
|
conflicts_with 'dart'
|
|
no_compile_needed
|
|
no_shrink
|
|
|
|
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
|