mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 07:28:01 -05:00
* Add unbuilt gyp_next to updater-gyp_next-0.21.0 * updater-gyp_next-0.21.0: Package File Update Run on linux/386 container. * updater-gyp_next-0.21.0: Package File Update Run on linux/amd64 container. * updater-gyp_next-0.21.0: Package File Update Run on linux/arm/v7 container. --------- Co-authored-by: satmandu <satmandu@users.noreply.github.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
22 lines
748 B
Ruby
22 lines
748 B
Ruby
require 'buildsystems/python'
|
|
|
|
class Gyp_next < Python
|
|
description 'GYP is a fork of the GYP build system for use in the Node.js projects.'
|
|
homepage 'https://github.com/nodejs/gyp-next/'
|
|
version '0.21.0'
|
|
license 'BSD-3'
|
|
compatibility 'all'
|
|
source_url 'https://github.com/nodejs/gyp-next.git'
|
|
git_hashtag "v#{version}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'aaa4754161030d45808f5d6d9e8084cfd2bd44f2b07922fa156b83888e23150e',
|
|
armv7l: 'aaa4754161030d45808f5d6d9e8084cfd2bd44f2b07922fa156b83888e23150e',
|
|
i686: '86c9e2f8c7c7b74789b7348720a1afd5db0a157f40782aab0477137dd99bccaa',
|
|
x86_64: 'd81b4a63056e5e274c5ed6132a4a93c3a3b3425c89df52db465755edb16f1a5e'
|
|
})
|
|
|
|
depends_on 'python3' => :build
|
|
end
|