mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-08 23:18:10 -05:00
* Add mesa and dep package updates, add libclc Signed-off-by: Satadru Pramanik <satadru@gmail.com> * update py3_pycparser Signed-off-by: Satadru Pramanik <satadru@gmail.com> * rebuild spirv_llvm_translator with gcc 14.1 Signed-off-by: Satadru Pramanik <satadru@gmail.com> * update mesa binaries Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add versioning to spirv_llvm_translator Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com>
17 lines
344 B
Ruby
17 lines
344 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_mako < Pip
|
|
description 'Mako is a super fast templating language.'
|
|
homepage 'https://www.makotemplates.org/'
|
|
@_ver = '1.3.5'
|
|
version "#{@_ver}-py3.12"
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
|
|
depends_on 'py3_markupsafe'
|
|
depends_on 'python3' => :build
|
|
|
|
no_compile_needed
|
|
end
|