mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 16:08:08 -05:00
* Add binary_compression value to each package * Remove binary_url values and arrays * Handle packages with empty binary_sha256 arrays (either missing binaries or not compiled by us)
22 lines
957 B
Ruby
22 lines
957 B
Ruby
require 'buildsystems/cmake'
|
|
|
|
class Doxygen < CMake
|
|
description 'Doxygen is the de facto standard tool for generating documentation from annotated C++ sources, but it also supports other popular programming languages such as C, Objective-C, C#, PHP, Java, Python, IDL (Corba, Microsoft, and UNO/OpenOffice flavors), Fortran, VHDL, Tcl, and to some extent D.'
|
|
homepage 'http://www.doxygen.nl/'
|
|
version '1.10.0'
|
|
license 'GPL-2'
|
|
compatibility 'all'
|
|
source_url 'https://github.com/doxygen/doxygen.git'
|
|
git_hashtag 'Release_1_10_0'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'd5a9ea1719e0a44532bae613e98afd3d2b6430318ab06b4706a5e33d2170d762',
|
|
armv7l: 'd5a9ea1719e0a44532bae613e98afd3d2b6430318ab06b4706a5e33d2170d762',
|
|
i686: '1af76638f965691d5299a812c532c3e93b21c0b01587f8394e93a024bd811325',
|
|
x86_64: 'ae4d3d8366a191999b40d823eee857f9edb8b38a2bdf8ce89b2de092607ff7eb'
|
|
})
|
|
|
|
depends_on 'python3' => :build
|
|
end
|