mirror of
https://github.com/outbackdingo/ports.git
synced 2026-03-21 22:44:59 +00:00
27 lines
870 B
Plaintext
Executable File
27 lines
870 B
Plaintext
Executable File
# description : Software library that implements a self-contained, serverless, zero-configuration, transactional SQL database engine
|
|
# homepage : http://www.sqlite.org/
|
|
# maintainer : emmett1, emmett1.2miligrams at gmail.com
|
|
|
|
name=sqlite
|
|
version=3.23.1
|
|
_version=3230100
|
|
release=1
|
|
source=(http://sqlite.org/2018/$name-autoconf-$_version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-autoconf-$_version
|
|
|
|
./configure --prefix=/usr --disable-static \
|
|
--enable-fts5 CFLAGS="$CFLAGS -g \
|
|
-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
|
|
}
|
|
|
|
md5sum=(99a51b40a66872872a91c92f6d0134fa)
|