Files
chromebrew/packages/cpputest.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

37 lines
1.1 KiB
Ruby

require 'package'
class Cpputest < Package
description 'Unit testing and mocking framework for C/C++.'
homepage 'https://cpputest.github.io/'
version '3.8'
license 'BSD'
compatibility 'all'
source_url 'https://github.com/cpputest/cpputest/archive/v3.8.tar.gz'
source_sha256 '2b95bb4a568f680cdcca678345a2c41c028275471c2ed7bf0b6f6f1f689c3b76'
binary_compression 'tar.xz'
binary_sha256({
aarch64: '0f685813ef3846cc3d4cd038772c51607920a8e570bbb9f7766d37e81eada691',
armv7l: '0f685813ef3846cc3d4cd038772c51607920a8e570bbb9f7766d37e81eada691',
i686: 'f57f4d0513bb5c15b63e7cb48f35786d3f3b437d59e471165a48427ef38f9a08',
x86_64: '8813aacc9f17fbafe7a49fd45e4e3989b201698fa0db1258f55954735b7d6ee3'
})
# the steps required to build the package
def self.build
system './autogen.sh'
system './configure', "--prefix=#{CREW_PREFIX}", "--libdir=#{CREW_LIB_PREFIX}"
system 'make'
end
# the steps required to install the package
def self.install
system 'make', "DESTDIR=#{CREW_DEST_DIR}", 'install'
end
# the steps required to check if the package was built ok
def self.check
system 'make', 'check'
end
end