opt/sqlite3/Pkgfile

21 lines
583 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
2013-10-18 09:32:41 +02:00
version=3.8.1
2013-03-18 18:16:39 +01:00
release=1
2012-01-16 19:46:09 +01:00
_version=$(printf "%i%.2i%.2i%.2i" ${version//./ })
2006-11-10 16:21:43 +01:00
2013-03-18 18:16:39 +01:00
source=(http://www.sqlite.org/2013/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}
CFLAGS="-DSQLITE_SECURE_DELETE=1 -DSQLITE_ENABLE_COLUMN_METADATA=1 \
-DSQLITE_ENABLE_UNLOCK_NOTIFY=1 $CFLAGS" \
2010-03-11 17:38:29 +01:00
./configure --prefix=/usr --mandir=/usr/man
2006-11-10 16:21:43 +01:00
make
make DESTDIR=$PKG install
}