mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-08 23:18:10 -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)
45 lines
1.7 KiB
Ruby
45 lines
1.7 KiB
Ruby
require 'package'
|
|
|
|
class S < Package
|
|
description 'Open a web search in your terminal.'
|
|
homepage 'https://github.com/zquestz/s/'
|
|
version '0.5.15'
|
|
license 'GPL-3+'
|
|
compatibility 'all'
|
|
case ARCH
|
|
when 'aarch64', 'armv7l'
|
|
source_url "https://github.com/zquestz/s/releases/download/v#{version}/s-linux_arm.zip"
|
|
source_sha256 'ddffb211f117395a736f679a8a96cc726ac46c50fdfe1a6e2c4bb4494b970cd0'
|
|
when 'i686'
|
|
source_url "https://github.com/zquestz/s/releases/download/v#{version}/s-linux_386.zip"
|
|
source_sha256 '8724b0ea6ec0e8abedcdc87f2efccd12a848ff1267149f8ca14b46251649cffc'
|
|
when 'x86_64'
|
|
source_url "https://github.com/zquestz/s/releases/download/v#{version}/s-linux_amd64.zip"
|
|
source_sha256 '38c29001936f1758159cc935b3ab97d1dee75c35ceacd8bd5ada3837b306192f'
|
|
end
|
|
binary_compression 'tar.xz'
|
|
|
|
binary_sha256({
|
|
aarch64: '33e5b1a944af6817883f4291082d9dc733d1f5ca682b0184d5355adc4108fd7a',
|
|
armv7l: '33e5b1a944af6817883f4291082d9dc733d1f5ca682b0184d5355adc4108fd7a',
|
|
i686: 'ec31db142a154f7f4eba7234e1ba52bd60fc949ec25714b7b46ffcf66fafcdf1',
|
|
x86_64: '2500eedec49e58870261d48caad9ff43de24fae21853736d7feb0a83f519e248'
|
|
})
|
|
|
|
depends_on 'unzip' => :build
|
|
|
|
def self.install
|
|
FileUtils.mkdir_p "#{CREW_DEST_PREFIX}/bin"
|
|
FileUtils.mkdir_p "#{CREW_DEST_PREFIX}/share/s/"
|
|
FileUtils.cp 'autocomplete/s-completion.bash', "#{CREW_DEST_PREFIX}/share/s/"
|
|
FileUtils.cp 's', "#{CREW_DEST_PREFIX}/bin"
|
|
|
|
FileUtils.mkdir_p "#{CREW_DEST_PREFIX}/etc/bash.d/"
|
|
@env = <<~EOF
|
|
# s bash completion
|
|
source #{CREW_PREFIX}/share/s/s-completion.bash
|
|
EOF
|
|
File.write("#{CREW_DEST_PREFIX}/etc/bash.d/s", @env)
|
|
end
|
|
end
|