lab.nexedi.com will be down from Thursday, 20 March 2025, 07:30:00 UTC for a duration of approximately 2 hours

Commit 479c4d00 authored by Damian Montero's avatar Damian Montero Committed by GitHub

Merge pull request #1851 from uberhacker/update-sqlite-package

Update sqlite from 3.21.0-1 to 3.22.0
parents c0d9241e 57ff8de2
......@@ -3,29 +3,30 @@ require 'package'
class Sqlite < Package
description 'SQLite is a self-contained, high-reliability, embedded, full-featured, public-domain, SQL database engine.'
homepage 'http://www.sqlite.org/'
version '3.21.0-1'
source_url 'https://www.sqlite.org/2017/sqlite-autoconf-3210000.tar.gz'
source_sha256 'd7dd516775005ad87a57f428b6f86afd206cb341722927f104d3f0cf65fbbbe3'
version '3.22.0'
source_url 'https://www.sqlite.org/2018/sqlite-autoconf-3220000.tar.gz'
source_sha256 '2824ab1238b706bc66127320afbdffb096361130e23291f26928a027b885c612'
binary_url ({
aarch64: 'https://dl.bintray.com/chromebrew/chromebrew/sqlite-3.21.0-1-chromeos-armv7l.tar.xz',
armv7l: 'https://dl.bintray.com/chromebrew/chromebrew/sqlite-3.21.0-1-chromeos-armv7l.tar.xz',
i686: 'https://dl.bintray.com/chromebrew/chromebrew/sqlite-3.21.0-1-chromeos-i686.tar.xz',
x86_64: 'https://dl.bintray.com/chromebrew/chromebrew/sqlite-3.21.0-1-chromeos-x86_64.tar.xz',
})
binary_sha256 ({
aarch64: '78ab93dbb2776ecfa6f03c46e7ef7adee58f1a7d342ffa73c2da8a4e4e20e48c',
armv7l: '78ab93dbb2776ecfa6f03c46e7ef7adee58f1a7d342ffa73c2da8a4e4e20e48c',
i686: 'a9b9ae6eb22b1e9a830adad55b3bee807ed6cc0ce30a79525f3cee7b8756586e',
x86_64: '68bb1487bcb4feb71306fc5a7947c779ed63e1f3d6b4c4acbc8d36d6863019ec',
})
depends_on 'libedit'
depends_on 'readline'
depends_on 'zlibpkg'
def self.build
system './configure',
"--prefix=#{CREW_PREFIX}",
"--libdir=#{CREW_LIB_PREFIX}",
'--disable-static',
'--enable-shared',
'--enable-editline',
'--enable-readline',
'--enable-fts5',
'--enable-json1',
'--enable-session',
'--with-pic'
system 'make'
end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment