blob: 69fc52ceb65f2c5c1a7f6a091e1663caec3f4512 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
# Maintainer: Martchus <martchus at gmx dot net>
# Contributor: jazztickets
# Contributor: Andrew Sun <adsun701 at gmail dot com>
# Contributor: napa3um <napa3um at gmail dot com>
# Contributor: Filip Brcic <brcha at gna dot org>
pkgname=mingw-w64-sqlite
_srcver=3500100
pkgver=3.50.1
pkgrel=1
pkgdesc="A C library that implements an SQL database engine (mingw-w64)"
arch=('any')
groups=(mingw-w64)
depends=('mingw-w64-crt')
makedepends=('mingw-w64-configure' 'mingw-w64-pdcurses' 'mingw-w64-readline')
options=('!strip' '!buildflags' 'staticlibs')
license=('custom:Public Domain')
url="https://www.sqlite.org/"
source=(https://www.sqlite.org/2025/sqlite-src-${_srcver}.zip)
sha256sums=('9090597773c60a49caebb3c1ac57db626fac4d97cb51890815a8b529a4d9c3dc')
_architectures="i686-w64-mingw32 x86_64-w64-mingw32"
_cflags=(
-fexceptions
-DSQLITE_ENABLE_COLUMN_METADATA=1
-DSQLITE_ENABLE_UNLOCK_NOTIFY
-DSQLITE_ENABLE_DBSTAT_VTAB=1
-DSQLITE_ENABLE_FTS3_TOKENIZER=1
-DSQLITE_ENABLE_FTS3_PARENTHESIS
-DSQLITE_SECURE_DELETE
-DSQLITE_ENABLE_STMTVTAB
-DSQLITE_ENABLE_STAT4
-DSQLITE_MAX_VARIABLE_NUMBER=250000
-DSQLITE_MAX_EXPR_DEPTH=10000
-DSQLITE_ENABLE_MATH_FUNCTIONS
-DSQLITE_USE_MALLOC_H=1
-DSQLITE_USE_MSIZE=1
-DSQLITE_DISABLE_DIRSYNC=1
-fno-strict-aliasing
)
build() {
CFLAGS+=" ${_cflags[*]}" CXXFLAGS+=" ${_cflags[*]}"
cd "${srcdir}/sqlite-src-${_srcver}"
for _arch in ${_architectures}; do
mkdir -p build-${_arch} && pushd build-${_arch}
# remove '--target=...' from mingw's configure
bash <(sed 's/--target[^ ]* //' $(command -v "${_arch}-configure")) \
--fts3 \
--fts4 \
--fts5 \
--rtree \
--session \
--out-implib \
--dll-basename
make
popd
done
}
package() {
cd "${srcdir}/sqlite-src-${_srcver}"
for _arch in ${_architectures}; do
pushd build-${_arch}
make DESTDIR="${pkgdir}" install
rm -r "${pkgdir}/usr/${_arch}/share"
${_arch}-strip --strip-unneeded "$pkgdir"/usr/${_arch}/bin/*.exe
${_arch}-strip --strip-unneeded "$pkgdir"/usr/${_arch}/bin/*.dll
${_arch}-strip -g "$pkgdir"/usr/${_arch}/lib/*.a
popd
done
}
|