mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
* Add binary_compression value to each package * Remove binary_url values and arrays * Handle packages with empty binary_sha256 arrays (either missing binaries or not compiled by us)
53 lines
2.2 KiB
Ruby
53 lines
2.2 KiB
Ruby
require 'package'
|
|
|
|
class Depot_tools < Package
|
|
description 'Chromium uses a package of scripts, the depot_tools, to manage interaction with the Chromium source code repository and the Chromium development process.'
|
|
homepage 'https://dev.chromium.org/developers/how-tos/depottools'
|
|
version 'da768751'
|
|
license 'BSD-Google'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.xz'
|
|
|
|
binary_sha256({
|
|
aarch64: '312855d9469f02e0cd5e58743c894ff33f4025e51b86be2a434257e9f0113198',
|
|
armv7l: '312855d9469f02e0cd5e58743c894ff33f4025e51b86be2a434257e9f0113198',
|
|
i686: 'e785879988280df835d5ef3311a5c959443cf92f60c5e6d06ed97240b1f5a0a7',
|
|
x86_64: '31ac1d57078cb3d9dd42c8473df0e4024629ed0bd293f962a404b62e9c9fa584'
|
|
})
|
|
|
|
depends_on 'xdg_base'
|
|
|
|
def self.install
|
|
system 'git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git --depth 10'
|
|
Dir.chdir 'depot_tools' do
|
|
system "git checkout #{version}"
|
|
FileUtils.rm_rf 'man/src/'
|
|
FileUtils.rm_rf Dir.glob('.git*')
|
|
system 'find -name \'*.bat\' -delete'
|
|
FileUtils.mkdir_p "#{CREW_DEST_PREFIX}/share/depot_tools/"
|
|
FileUtils.mkdir_p "#{CREW_DEST_MAN_PREFIX}/"
|
|
FileUtils.mkdir_p "#{CREW_DEST_PREFIX}/share/doc/depot_tools/"
|
|
FileUtils.mv Dir.glob('man/html/*.html'), "#{CREW_DEST_PREFIX}/share/doc/depot_tools/"
|
|
FileUtils.mv Dir.glob('man/*'), CREW_DEST_MAN_PREFIX
|
|
FileUtils.rm_r 'man/'
|
|
FileUtils.mv Dir.glob('*'), "#{CREW_DEST_PREFIX}/share/depot_tools"
|
|
FileUtils.mkdir_p "#{CREW_DEST_HOME}/.config/.vpython-root"
|
|
FileUtils.mkdir_p "#{CREW_DEST_HOME}/.config/.vpython_cipd_cache"
|
|
FileUtils.ln_s "#{HOME}/.config/.vpython-root/", "#{CREW_DEST_HOME}/.vpython-root"
|
|
FileUtils.ln_s "#{HOME}/.config/.vpython_cipd_cache/", "#{CREW_DEST_HOME}/.vpython_cipd_cache"
|
|
end
|
|
|
|
FileUtils.mkdir_p "#{CREW_DEST_PREFIX}/etc/env.d/"
|
|
@depot_tools_env = <<~DEPOT_TOOLS_EOF
|
|
# Add depot-tools to path
|
|
PATH="$PATH:#{CREW_PREFIX}/share/depot_tools"
|
|
DEPOT_TOOLS_EOF
|
|
File.write("#{CREW_DEST_PREFIX}/etc/env.d/depot_tools", @depot_tools_env)
|
|
end
|
|
|
|
def self.remove
|
|
FileUtils.rm_rf Dir.glob("#{HOME}/.config/.vpython*")
|
|
end
|
|
end
|