mirror of
https://github.com/outbackdingo/ports.git
synced 2026-03-21 20:44:52 +00:00
27 lines
917 B
Plaintext
Executable File
27 lines
917 B
Plaintext
Executable File
# description : Software library that implements a self-contained, serverless, zero-configuration, transactional SQL database engine
|
|
# homepage : https://www.sqlite.org/
|
|
# maintainer : emmett1, emmett1.2miligrams at gmail.com
|
|
|
|
name=sqlite
|
|
version=3.29.0
|
|
_version=3290000
|
|
release=1
|
|
source=(https://sqlite.org/2019/$name-autoconf-$_version.tar.gz)
|
|
md5sum=(8f3dfe83387e62ecb91c7c5c09c688dc)
|
|
|
|
build() {
|
|
cd $name-autoconf-$_version
|
|
|
|
./configure --prefix=/usr --disable-static \
|
|
--enable-fts5 CFLAGS="$CFLAGS -g \
|
|
-DSQLITE_ENABLE_FTS3=1 \
|
|
-DSQLITE_ENABLE_FTS4=1 \
|
|
-DSQLITE_ENABLE_COLUMN_METADATA=1 \
|
|
-DSQLITE_ENABLE_UNLOCK_NOTIFY=1 \
|
|
-DSQLITE_SECURE_DELETE=1 \
|
|
-DSQLITE_ENABLE_DBSTAT_VTAB=1 \
|
|
-DSQLITE_ENABLE_FTS3_TOKENIZER=1"
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|