mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
* Add unbuilt go_tools to updater-go_tools-2025.1.1 * Add x86_64 binaries Signed-off-by: Satadru Pramanik <satadru@gmail.com> * updater-go_tools-2025.1.1: Build Run on linux/386. * updater-go_tools-2025.1.1: Build Run on linux/arm/v7. * updater-go_tools-2025.1.1: Package File Update Run on linux/386 container. * updater-go_tools-2025.1.1: Package File Update Run on linux/amd64 container. * updater-go_tools-2025.1.1: Package File Update Run on linux/arm/v7 container. * gimp — gimp → 3.1.4 (#12678) * gimp => 3.1.4 Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust mypaint_brushes dep. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust appstream dep. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * gimp: Build Run on linux/arm/v7. * gimp: Build Run on linux/amd64. * gimp: Package File Update Run on linux/amd64 container. * Remover appstream build dep. --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com> Co-authored-by: chromebrew-actions[bot] <220035932+chromebrew-actions[bot]@users.noreply.github.com> Co-authored-by: Ed Reel <edreel@gmail.com>
28 lines
901 B
Ruby
28 lines
901 B
Ruby
require 'package'
|
|
|
|
class Go_tools < Package
|
|
description 'Developer tools for the Go programming language'
|
|
homepage 'https://github.com/golang/tools'
|
|
version '0.36.0'
|
|
license 'BSD'
|
|
compatibility 'all'
|
|
source_url 'https://github.com/golang/tools.git'
|
|
git_hashtag "v#{version}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '489f8887e565982acc7101addfd275ca6c4cbd8fedee0ce400f8f9823f9ab0f3',
|
|
armv7l: '489f8887e565982acc7101addfd275ca6c4cbd8fedee0ce400f8f9823f9ab0f3',
|
|
i686: '2823d076fdbcca9ad38a463f7024bffc7f61db0bd91d91ee884ded61f7591137',
|
|
x86_64: '9436c12f13b3b60f1b3897434b923d944a4709b4855256060379a206656407b8'
|
|
})
|
|
|
|
depends_on 'glibc' # R
|
|
depends_on 'go' => :build
|
|
|
|
def self.install
|
|
system "GOBIN=#{CREW_DEST_PREFIX}/bin go install ./cmd..."
|
|
FileUtils.mv "#{CREW_DEST_PREFIX}/bin/bundle", "#{CREW_DEST_PREFIX}/bin/go_bundle"
|
|
end
|
|
end
|