milis/talimatname/genel/sqlite/talimat

25 lines
615 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Description: SQL veritabanı motoru
# URL: http://www.sqlite.org/
# Packager: milisarge
# Depends on: ncurses readline
name=sqlite
version=3.18.0
release=1
_version=$(printf "%i%.2i%.2i%.2i" ${version//./ })
source=(http://www.sqlite.org/2017/sqlite-autoconf-${_version}.tar.gz)
build () {
cd sqlite-autoconf-${_version}
CONFIG_SHELL=/bin/bash \
CFLAGS="-DSQLITE_SECURE_DELETE=1 -DSQLITE_ENABLE_COLUMN_METADATA=1 \
-DSQLITE_ENABLE_UNLOCK_NOTIFY=1 -DSQLITE_ENABLE_DBSTAT_VTAB=1 \
$CFLAGS" \
./configure --prefix=/usr
make
make DESTDIR=$PKG install
}