Files
chromebrew/packages/doxygen.rb
Maximilian Downey Twiss f6dc1d8d4e Derive binary_url in package.rb (#7082)
* 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)
2024-01-25 11:03:31 -05:00

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