summaryrefslogtreecommitdiff
path: root/sqlite3/Pkgfile
blob: 9c5710b77de66d1f36a94f94f0d9433ab923a07d (plain)
    1 # Description: SQL database engine
    2 # URL:         http://www.sqlite.org/
    3 # Maintainer:  Juergen Daubert, jue at crux dot nu
    4 # Depends on:  ncurses, readline
    5 
    6 name=sqlite3
    7 version=3.8.11.1
    8 release=1
    9 _version=$(printf "%i%.2i%.2i%.2i" ${version//./ })
   10 
   11 source=(http://www.sqlite.org/2015/sqlite-autoconf-${_version}.tar.gz)
   12 
   13 build () {
   14     cd sqlite-autoconf-${_version}
   15     
   16     CFLAGS="-DSQLITE_SECURE_DELETE=1 -DSQLITE_ENABLE_COLUMN_METADATA=1 \
   17             -DSQLITE_ENABLE_UNLOCK_NOTIFY=1 $CFLAGS" \
   18     ./configure --prefix=/usr --mandir=/usr/man
   19     
   20     make -j1
   21     make DESTDIR=$PKG install
   22 }

Generated by cgit