core/sqlite3/Pkgfile

24 lines
614 B
Plaintext
Raw Normal View History

# Description: SQL database engine
2021-03-13 14:20:37 +01:00
# URL: https://www.sqlite.org/
# Maintainer: CRUX System Team, core-ports at crux dot nu
# Depends on: readline zlib
name=sqlite3
2021-04-20 15:17:31 +02:00
version=3.35.5
release=1
_version=$(printf "%i%.2i%.2i%.2i" ${version//./ })
2021-01-22 12:18:25 +01:00
source=(https://www.sqlite.org/2021/sqlite-autoconf-${_version}.tar.gz)
2021-03-13 14:20:37 +01:00
build() {
cd sqlite-autoconf-${_version}
2021-01-22 12:18:25 +01:00
2021-03-13 14:20:37 +01:00
CFLAGS="-DSQLITE_SECURE_DELETE=1 -DSQLITE_ENABLE_COLUMN_METADATA=1 \
-DSQLITE_ENABLE_UNLOCK_NOTIFY=1 -DSQLITE_ENABLE_DBSTAT_VTAB=1 \
2021-03-18 10:44:51 +01:00
-DSQLITE_ENABLE_FTS3=1 $CFLAGS" \
2021-03-13 14:20:37 +01:00
./configure --prefix=/usr --enable-readline
2021-01-22 12:18:25 +01:00
2021-03-13 14:20:37 +01:00
make
make DESTDIR=$PKG install
}