mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-07 22:54:11 -05:00
15 lines
483 B
Ruby
15 lines
483 B
Ruby
require 'package'
|
|
Package.load_package("#{__dir__}/llvm16_build.rb")
|
|
|
|
class Llvm_lib16 < Package
|
|
description 'The LLVM Project is a collection of modular and reusable compiler and toolchain technologies. The optional packages clang, lld, lldb, polly, compiler-rt, libcxx, and libcxxabi are included.'
|
|
homepage Llvm16_build.homepage
|
|
version Llvm16_build.version
|
|
license Llvm16_build.license
|
|
compatibility Llvm16_build.compatibility
|
|
|
|
is_fake
|
|
|
|
depends_on 'llvm16_lib'
|
|
end
|