milis/talimatname/genel/s/sqlite/talimat

37 lines
974 B
Plaintext
Raw Normal View History

2017-10-27 20:46:27 +02:00
# Tanım: SQL veritabanı motoru
2017-04-17 14:23:44 +02:00
# URL: http://www.sqlite.org/
2017-10-27 20:46:27 +02:00
# Paketçi: milisarge
# Gerekler:
2016-02-24 01:27:23 +01:00
2017-10-28 14:10:23 +02:00
isim=sqlite
2018-05-12 01:30:09 +02:00
surum=3.23.1
_srcver=3230100
2017-10-28 14:10:23 +02:00
devir=1
2018-05-12 01:30:09 +02:00
_surum=$(printf "%i%.2i%.2i%.2i" ${surum//./ })
2016-02-24 01:27:23 +01:00
2018-05-12 01:30:09 +02:00
kaynak=(http://www.sqlite.org/2018/sqlite-autoconf-${_surum}.tar.gz)
2016-02-24 01:27:23 +01:00
2017-10-27 23:59:41 +02:00
derle() {
2017-09-20 17:23:51 +02:00
cd sqlite-autoconf-$_srcver
export CPPFLAGS="$CPPFLAGS -DSQLITE_ENABLE_COLUMN_METADATA=1 \
-DSQLITE_ENABLE_UNLOCK_NOTIFY \
-DSQLITE_ENABLE_DBSTAT_VTAB=1 \
-DSQLITE_ENABLE_FTS3_TOKENIZER=1 \
-DSQLITE_SECURE_DELETE \
-DSQLITE_MAX_VARIABLE_NUMBER=250000 \
-DSQLITE_MAX_EXPR_DEPTH=10000"
./configure --prefix=/usr \
--disable-static \
--disable-amalgamation \
--enable-fts3 \
--enable-fts4 \
--enable-fts5 \
--enable-rtree \
--enable-json1
make
# build additional tools
make
make DESTDIR=${PKG} install
2016-02-24 01:27:23 +01:00
}