mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-06 22:24:12 -05:00
16 lines
386 B
Ruby
16 lines
386 B
Ruby
require 'package'
|
|
Package.load_package("#{__dir__}/gcc_build.rb")
|
|
|
|
class Gcc < Package
|
|
description 'The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran, Ada, and Go.'
|
|
homepage Gcc_build.homepage
|
|
version Gcc_build.version
|
|
license Gcc_build.license
|
|
compatibility Gcc_build.compatibility
|
|
|
|
is_fake
|
|
|
|
depends_on 'gcc_lib'
|
|
depends_on 'gcc_dev'
|
|
end
|