mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -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)
24 lines
897 B
Ruby
24 lines
897 B
Ruby
require 'buildsystems/autotools'
|
|
|
|
class Cppunit < Autotools
|
|
description 'CppUnit is the C++ port of the famous JUnit framework for unit testing.'
|
|
homepage 'https://www.freedesktop.org/wiki/Software/cppunit'
|
|
version '1.15.1-1'
|
|
license 'LGPL'
|
|
compatibility 'all'
|
|
source_url 'https://dev-www.libreoffice.org/src/cppunit-1.15.1.tar.gz'
|
|
source_sha256 '89c5c6665337f56fd2db36bc3805a5619709d51fb136e51937072f63fcc717a7'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '34994f0771929f0990b528a73bdeba8989e609f9dec999cc8d9e08506dd91c45',
|
|
armv7l: '34994f0771929f0990b528a73bdeba8989e609f9dec999cc8d9e08506dd91c45',
|
|
i686: 'e67306e63a5e85ed48b15937ec40cd6fa462368e0a5f1d2136eba4dfb4673220',
|
|
x86_64: 'd6cab6f3a67a23be49b7760e237f74f346146d76d2fa2ab689553f285bf6cfd7'
|
|
})
|
|
|
|
depends_on 'doxygen' => ':build'
|
|
depends_on 'gcc_lib' # R
|
|
depends_on 'glibc' # R
|
|
end
|