mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
* Add unbuilt doxygen to updater-doxygen-1.16.1 * updater-doxygen-1.16.1: Package File Update Run on linux/386 container. * updater-doxygen-1.16.1: Package File Update Run on linux/amd64 container. * updater-doxygen-1.16.1: Package File Update Run on linux/arm/v7 container. --------- Co-authored-by: github-merge-queue <github-merge-queue@users.noreply.github.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
24 lines
1.0 KiB
Ruby
24 lines
1.0 KiB
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 'https://www.doxygen.nl/'
|
|
version '1.16.1'
|
|
license 'GPL-2'
|
|
compatibility 'all'
|
|
source_url 'https://github.com/doxygen/doxygen.git'
|
|
git_hashtag "Release_#{version.gsub('.', '_')}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '6ebb91dfdada72fd67a74448e5b94f3ecaf64c356beeb51672836da2feb2b21d',
|
|
armv7l: '6ebb91dfdada72fd67a74448e5b94f3ecaf64c356beeb51672836da2feb2b21d',
|
|
i686: '7d9a32d5344317d7ab1fcd2cff69932ab6fa12377f38a243036c113e3d1547f7',
|
|
x86_64: '73093164e80162758ec5d49051746eedd1514b6a589bd54963a592e3af760cda'
|
|
})
|
|
|
|
depends_on 'gcc_lib' # R
|
|
depends_on 'glibc' # R
|
|
depends_on 'python3' => :build
|
|
end
|