mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-08 15:13:56 -05:00
* Add unbuilt libversion to updater-libversion-3.0.4 * updater-libversion-3.0.4: Package File Update Run on linux/386 container. * updater-libversion-3.0.4: Package File Update Run on linux/amd64 container. * updater-libversion-3.0.4: Package File Update Run on linux/arm/v7 container. --------- Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
22 lines
698 B
Ruby
22 lines
698 B
Ruby
require 'buildsystems/cmake'
|
|
|
|
class Libversion < CMake
|
|
description 'Advanced version string comparison library.'
|
|
homepage 'https://github.com/repology/libversion'
|
|
version '3.0.4'
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'https://github.com/repology/libversion.git'
|
|
git_hashtag version
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'd9b1164fcf89b40bbc6b81b0d935b10a107d8c13f86d58d4e2906ab2d9572c6b',
|
|
armv7l: 'd9b1164fcf89b40bbc6b81b0d935b10a107d8c13f86d58d4e2906ab2d9572c6b',
|
|
i686: '57192007d0a6ac991165247e7dcd9f90ebc82e505caa19436d4c12533c378751',
|
|
x86_64: '0d451b69e43e8931d79e2a097ecce63bf4d287e37ccb67c80839f06a5956c812'
|
|
})
|
|
|
|
run_tests
|
|
end
|