21 lines
583 B
Plaintext
21 lines
583 B
Plaintext
# Description: SQL database engine
|
|
# URL: http://www.sqlite.org/
|
|
# Maintainer: Juergen Daubert, jue at crux dot nu
|
|
# Depends on: ncurses, readline
|
|
|
|
name=sqlite3
|
|
version=3.8.5
|
|
release=1
|
|
_version=$(printf "%i%.2i%.2i%.2i" ${version//./ })
|
|
|
|
source=(http://www.sqlite.org/2014/sqlite-autoconf-${_version}.tar.gz)
|
|
|
|
build () {
|
|
cd sqlite-autoconf-${_version}
|
|
CFLAGS="-DSQLITE_SECURE_DELETE=1 -DSQLITE_ENABLE_COLUMN_METADATA=1 \
|
|
-DSQLITE_ENABLE_UNLOCK_NOTIFY=1 $CFLAGS" \
|
|
./configure --prefix=/usr --mandir=/usr/man
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|