mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-08 15:13:56 -05:00
* libmaxminddb 1.11.0 -> 1.12.2 * Add built packages for linux/386 to libmaxminddb * Add built packages for linux/amd64 to libmaxminddb * Add built packages for linux/arm/v7 to libmaxminddb --------- Co-authored-by: Zopolis4 <creatorsmithmdt@gmail.com> Co-authored-by: Zopolis4 <Zopolis4@users.noreply.github.com>
25 lines
775 B
Ruby
25 lines
775 B
Ruby
require 'buildsystems/cmake'
|
|
|
|
class Libmaxminddb < CMake
|
|
description 'C library for the MaxMind DB file format.'
|
|
homepage 'https://maxmind.github.io/libmaxminddb/'
|
|
version '1.12.2'
|
|
license 'Apache-2.0'
|
|
compatibility 'all'
|
|
source_url 'https://github.com/maxmind/libmaxminddb.git'
|
|
git_hashtag version
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '3008d852b5d5dc7d96d8d9fac82f9ed3e9986f540538e19275426b55e67df19a',
|
|
armv7l: '3008d852b5d5dc7d96d8d9fac82f9ed3e9986f540538e19275426b55e67df19a',
|
|
i686: '91dd3ff1f16305f5f207143495a1701e2614ca83afe249a75393d9763439ee86',
|
|
x86_64: '8718162376f822ddf7b27a2b4bd1aa4588faab64ede35a2b4523c82255b06c7f'
|
|
})
|
|
|
|
depends_on 'glibc' # R
|
|
|
|
cmake_options '-DBUILD_SHARED_LIBS=ON'
|
|
run_tests
|
|
end
|