mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
* Add unbuilt unixodbc to updater-unixodbc-2.3.12 * updater-unixodbc-2.3.12: Build Run on linux/386. * updater-unixodbc-2.3.12: Build Run on linux/arm/v7. * updater-unixodbc-2.3.12: Build Run on linux/amd64. * updater-unixodbc-2.3.12: Package File Update Run on linux/386 container. * modernize package file. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update source hash Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com>
22 lines
860 B
Ruby
22 lines
860 B
Ruby
require 'buildsystems/autotools'
|
|
|
|
class Unixodbc < Autotools
|
|
description 'ODBC is an open specification for providing application developers with a predictable API with which to access Data Sources.'
|
|
homepage 'https://www.unixodbc.org/'
|
|
version '2.3.12'
|
|
license 'LGPL-2+'
|
|
compatibility 'all'
|
|
source_url "https://www.unixodbc.org/unixODBC-#{version}.tar.gz"
|
|
source_sha256 'f210501445ce21bf607ba51ef8c125e10e22dffdffec377646462df5f01915ec'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'a96a7d082d04ad0df1f5a509d30f75072696773662345afddd57d2e8d5d46cff',
|
|
armv7l: 'a96a7d082d04ad0df1f5a509d30f75072696773662345afddd57d2e8d5d46cff',
|
|
i686: 'fb62c1ad09e31efc8653afcbea8219630c62c953321749821af0f9b670998564',
|
|
x86_64: '3a54dac313893c8a2aa8ec263a1b28884ec184f72e54e941fe68d923d618d124'
|
|
})
|
|
|
|
depends_on 'glibc' # R
|
|
end
|