opt/sqlite3/Pkgfile

24 lines
622 B
Plaintext
Raw Normal View History

2006-11-10 16:21:43 +01:00
# Description: SQL database engine
# URL: http://www.sqlite.org/
2011-02-02 13:44:37 +01:00
# Maintainer: Juergen Daubert, jue at crux dot nu
2006-11-10 16:21:43 +01:00
# Depends on: ncurses, readline
name=sqlite3
2016-01-14 15:15:49 +01:00
version=3.10.1
2016-01-15 14:08:41 +01:00
release=2
2012-01-16 19:46:09 +01:00
_version=$(printf "%i%.2i%.2i%.2i" ${version//./ })
2006-11-10 16:21:43 +01:00
2016-01-08 16:00:02 +01:00
source=(http://www.sqlite.org/2016/sqlite-autoconf-${_version}.tar.gz)
2006-11-10 16:21:43 +01:00
build () {
2012-01-16 19:46:09 +01:00
cd sqlite-autoconf-${_version}
2015-05-11 12:58:21 +02:00
CFLAGS="-DSQLITE_SECURE_DELETE=1 -DSQLITE_ENABLE_COLUMN_METADATA=1 \
-DSQLITE_ENABLE_UNLOCK_NOTIFY=1 -DSQLITE_ENABLE_DBSTAT_VTAB=1 \
$CFLAGS" \
2016-01-15 14:08:41 +01:00
./configure --prefix=/usr
2015-05-11 12:58:21 +02:00
2016-01-15 14:08:41 +01:00
make
2006-11-10 16:21:43 +01:00
make DESTDIR=$PKG install
}