Files
chromebrew/packages/micro.rb
Maximilian Downey Twiss de24923ee8 Add Rubocop CI (#7083)
* Rename IgnoredPatterns to AllowedPatterns.

* Exclude docopt.rb (not our code) from Rubocop

* Disable Style/RedundantReturn

* Disable Style/MutableConstant

* Disable Style/NumericLiterals

* Set Layout/IndentationStyle to spaces

* Temporarily disable various cops.

* Add Rubocop CI via Octocop

* Lint tree with rubocop -A -c .rubocop.yml

Co-authored-by: Satadru Pramanik <satadru@gmail.com>
2022-08-22 13:31:25 -04:00

39 lines
1.8 KiB
Ruby

require 'package'
class Micro < Package
description 'A modern and intuitive terminal-based text editor'
homepage 'https://micro-editor.github.io/'
version '1.4.1'
license 'MIT'
compatibility 'all'
case ARCH
when 'aarch64', 'armv7l'
source_url 'https://github.com/zyedidia/micro/releases/download/v1.4.1/micro-1.4.1-linux-arm.tar.gz'
source_sha256 '3d7a2d1df344fbf0d3bd76f6a6748e490d80c8dfd5f9e8539b25997d459c5411'
when 'i686'
source_url 'https://github.com/zyedidia/micro/releases/download/v1.4.1/micro-1.4.1-linux32.tar.gz'
source_sha256 'd72d511b4f0fec5bb614b38607e68c5f0918f836d0f60e87c48f0b18e2eab916'
when 'x86_64'
source_url 'https://github.com/zyedidia/micro/releases/download/v1.4.1/micro-1.4.1-linux64.tar.gz'
source_sha256 'e7d4c9427f9fdfed78e69d42cf518e93ae15fc8f70b7f0f87d292ed81206e900'
end
binary_url({
aarch64: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/micro/1.4.1_armv7l/micro-1.4.1-chromeos-armv7l.tar.xz',
armv7l: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/micro/1.4.1_armv7l/micro-1.4.1-chromeos-armv7l.tar.xz',
i686: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/micro/1.4.1_i686/micro-1.4.1-chromeos-i686.tar.xz',
x86_64: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/micro/1.4.1_x86_64/micro-1.4.1-chromeos-x86_64.tar.xz'
})
binary_sha256({
aarch64: '305c70b8ae3ff6e8e80baf8d9af09db29b11fd3e40d381c787ee1f88406cc166',
armv7l: '305c70b8ae3ff6e8e80baf8d9af09db29b11fd3e40d381c787ee1f88406cc166',
i686: 'f92d08c76dc125b24674754b3a29ae94bccbfe2bcfca68ae21384e2215054a74',
x86_64: '64028544e15314a6a576521a7d21e156b9e82eda91fda40033ec19e2c75d1881'
})
def self.install
system "install -Dm755 micro #{CREW_DEST_PREFIX}/bin/micro"
end
end