mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
25 lines
753 B
Ruby
25 lines
753 B
Ruby
require 'package'
|
|
|
|
class Codon < Package
|
|
description 'Codon is a high-performance Python compiler that compiles Python code to native machine code without any runtime overhead.'
|
|
homepage 'https://docs.exaloop.io/codon/'
|
|
version '0.18.2'
|
|
license 'Apache-2.0'
|
|
compatibility 'x86_64'
|
|
source_url "https://github.com/exaloop/codon/releases/download/v#{version}/codon-linux-x86_64.tar.gz"
|
|
source_sha256 '74b501e7037b45563daa4857ec132c989eca011515904d59e8bb02f4bd8f81d2'
|
|
|
|
depends_on 'llvm'
|
|
depends_on 'python3'
|
|
|
|
no_compile_needed
|
|
|
|
def self.install
|
|
FileUtils.mkdir_p CREW_DEST_PREFIX
|
|
FileUtils.mv Dir['lib/codon/*.so'], 'lib64'
|
|
%w[bin include lib lib64].each do |dir|
|
|
FileUtils.mv dir, CREW_DEST_PREFIX
|
|
end
|
|
end
|
|
end
|