mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
* sqlite => 3.50.2 Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add built packages for linux/386 to branch sqlite. * Add built packages for linux/amd64 to branch sqlite. * Add built packages for linux/arm/v7 to branch sqlite. * cleanup Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com>
33 lines
1.0 KiB
Ruby
33 lines
1.0 KiB
Ruby
require 'buildsystems/autotools'
|
|
|
|
class Sqlite < Autotools
|
|
description 'SQLite is a self-contained, high-reliability, embedded, full-featured, public-domain, SQL database engine.'
|
|
homepage 'https://www.sqlite.org/'
|
|
version '3.50.2'
|
|
license 'public-domain'
|
|
compatibility 'all'
|
|
source_url 'https://github.com/sqlite/sqlite.git'
|
|
git_hashtag "version-#{version}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'e34ccf2a5d6458959a8a4ff59a480ad6125685d00a52480cbd41e4955e8b4c9d',
|
|
armv7l: 'e34ccf2a5d6458959a8a4ff59a480ad6125685d00a52480cbd41e4955e8b4c9d',
|
|
i686: '2e66a04a245e2e25b62ddff2e4fdec7129fcaa42f6e5a8813cbb5a95ddb017ff',
|
|
x86_64: '3c1a3bde311155b4d46c525eded402e4a93e887e23b3501a151da5f1fe1d06a5'
|
|
})
|
|
|
|
depends_on 'gcc_lib' # R
|
|
depends_on 'glibc' # R
|
|
depends_on 'libedit' # R
|
|
depends_on 'readline' => :build
|
|
depends_on 'zlib' # R
|
|
depends_on 'ncurses' # R
|
|
|
|
autotools_configure_options '--enable-shared \
|
|
--enable-editline \
|
|
--enable-readline \
|
|
--enable-fts3 \
|
|
--enable-session'
|
|
end
|