summaryrefslogtreecommitdiff
path: root/sqlite3/Pkgfile
blob: 6717afb445ad183e55fe622a055338775001248a (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.1
    8 release=1
    9 _version=$(printf "%i%.2i%.2i%.2i" ${version//./ })
   10 
   11 source=(http://www.sqlite.org/2013/sqlite-autoconf-${_version}.tar.gz)
   12 
   13 build () {
   14     cd sqlite-autoconf-${_version}
   15     CFLAGS="-DSQLITE_SECURE_DELETE=1 -DSQLITE_ENABLE_COLUMN_METADATA=1 \
   16             -DSQLITE_ENABLE_UNLOCK_NOTIFY=1 $CFLAGS" \
   17     ./configure --prefix=/usr --mandir=/usr/man
   18     make
   19     make DESTDIR=$PKG install
   20 }

Generated by cgit