opt/sqlite3/Pkgfile

20 lines
531 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-01-09 19:04:35 +01:00
version=3.7.15.2
2012-09-05 14:53:48 +02: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
2012-01-16 19:46:09 +01:00
source=(http://www.sqlite.org/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_UNLOCK_NOTIFY $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
}