mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
* Add Microsoft Edit, and rust buildsystem tweaks. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add built packages for linux/amd64 to msedit * tweak rust options Signed-off-by: Satadru Pramanik <satadru@gmail.com> * lint Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- 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>
22 lines
581 B
Ruby
22 lines
581 B
Ruby
require 'buildsystems/rust'
|
|
|
|
class Edit < RUST
|
|
description 'A simple editor for simple needs.'
|
|
homepage 'https://github.com/microsoft/edit.'
|
|
version '1.0.0'
|
|
license 'MIT'
|
|
compatibility 'i686 x86_64'
|
|
source_url 'https://github.com/microsoft/edit.git'
|
|
git_hashtag "v#{version.split('-').first}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
i686: '8a2dc7f7872fafbe914fe2fb38312c857eb9e2adbc4c8ad4f07e9819e9dca0cd',
|
|
x86_64: '37f56b627af9e4673af20bd86df99b5e020bc2e711e98b3e06e3c6580126f77b'
|
|
})
|
|
|
|
depends_on 'gcc_lib' # R
|
|
|
|
rust_channel 'nightly'
|
|
end
|