mirror of
https://github.com/outbackdingo/ports.git
synced 2026-02-11 13:00:35 +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.28.0
|
|
_version=3280000
|
|
release=1
|
|
source=(https://sqlite.org/2019/$name-autoconf-$_version.tar.gz)
|
|
md5sum=(3c68eb400f8354605736cd55400e1572)
|
|
|
|
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
|
|
}
|