mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-13 01:18:14 -05:00
* Sqlite 3.47.2 => 3.49.0 * Add built packages for linux/386 to update-sqlite * Add built packages for linux/amd64 to update-sqlite * Add built packages for linux/arm/v7 to update-sqlite --------- Co-authored-by: Ed Reel <edreel@gmail.com> Co-authored-by: uberhacker <uberhacker@users.noreply.github.com>
32 lines
1.1 KiB
Ruby
32 lines
1.1 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.49.0'
|
|
license 'public-domain'
|
|
compatibility 'all'
|
|
source_url 'https://www.sqlite.org/2025/sqlite-autoconf-3490000.tar.gz'
|
|
source_sha256 '4d8bfa0b55e36951f6e5a9fb8c99f3b58990ab785c57b4f84f37d163a0672759'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '9a6911c8e0c6d8d794b5cad139032fe7f01231d20640096795cf48cae756863b',
|
|
armv7l: '9a6911c8e0c6d8d794b5cad139032fe7f01231d20640096795cf48cae756863b',
|
|
i686: 'bc13fb5a7aaff051ef99e1e065df85d2a040f4f186dd86e62f1e361a2af3a7ae',
|
|
x86_64: 'b18d0d0064c133916cc41a90b0fc4da199c513a79e296ece6b72dbda53ff23fd'
|
|
})
|
|
|
|
depends_on 'glibc' # R
|
|
depends_on 'libedit' # R
|
|
depends_on 'readline' => :build
|
|
depends_on 'zlib' # R
|
|
depends_on 'ncurses' # R
|
|
|
|
configure_options '--enable-shared \
|
|
--enable-editline \
|
|
--enable-readline \
|
|
--enable-fts3 \
|
|
--enable-session'
|
|
end
|