1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
require 'package'
class Gn < Package
description 'GN is a meta-build system that generates build files for Ninja.'
homepage 'https://gn.googlesource.com/gn/'
version 'dca877f'
license 'BSD'
compatibility 'all'
source_url 'SKIP'
binary_url ({
aarch64: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/gn/dca877f_armv7l/gn-dca877f-chromeos-armv7l.tar.xz',
armv7l: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/gn/dca877f_armv7l/gn-dca877f-chromeos-armv7l.tar.xz',
i686: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/gn/dca877f_i686/gn-dca877f-chromeos-i686.tar.xz',
x86_64: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/gn/dca877f_x86_64/gn-dca877f-chromeos-x86_64.tar.xz',
})
binary_sha256 ({
aarch64: '7ecb46dc020a7f2ef83c9f299b93e33b7d7907915a580eae29fba4038d348572',
armv7l: '7ecb46dc020a7f2ef83c9f299b93e33b7d7907915a580eae29fba4038d348572',
i686: '24f08672a3063c1fb151239d347a8126d204f0b9ef81114512acd8a70772b4d8',
x86_64: '385d47846ff117275793dc43d9ef004d4aa1075b29af3d9283f289cfc757d59f',
})
depends_on 'python2' => :build
depends_on 'meson' => :build
def self.build
system "git clone https://gn.googlesource.com/gn"
ENV['C_INCLUDE_PATH']="#{CREW_PREFIX}/include/"
ENV['CXX']="g++"
Dir.chdir ("gn") do
system "python build/gen.py"
system "ninja -C out"
end
end
def self.install
system "install -Dm755 gn/out/gn #{CREW_DEST_PREFIX}/bin/gn"
end
def self.postinstall
end
end