summaryrefslogtreecommitdiffstats
path: root/sqlite3/Pkgfile
diff options
context:
space:
mode:
Diffstat (limited to 'sqlite3/Pkgfile')
-rw-r--r--sqlite3/Pkgfile37
1 files changed, 9 insertions, 28 deletions
diff --git a/sqlite3/Pkgfile b/sqlite3/Pkgfile
index 483cfc067..4df3e1b86 100644
--- a/sqlite3/Pkgfile
+++ b/sqlite3/Pkgfile
@@ -1,20 +1,18 @@
# Description: Librairie C qui implémente un moteur de base de données SQL
# URL: http://www.sqlite.org/
-# Maintainer: NuTyX core
+# Maintainer: Richard Hipp, Dan Kennedy
# Packager: thierryn1 at hispeed dot ch
# Depends on:
name=sqlite3
-version=3.7.5
-release=1
+version=3.7.10
+release=2
-_amalgamationver=3070500
+_amalgamationver=3071000
_amalgamationver2=${_amalgamationver/00/}
pkgver=${_amalgamationver2//0/.}
-#source=(http://www.sqlite.org/sqlite-$version.tar.gz)
source=(http://www.sqlite.org/sqlite-autoconf-$_amalgamationver.tar.gz
- http://www.sqlite.org/sqlite-tea-$_amalgamationver.tar.gz
http://www.sqlite.org/sqlite-doc-${_amalgamationver}.zip )
build() {
@@ -28,28 +26,11 @@ build() {
--enable-dynamic-extensions
make
- make DESTDIR=$PKG install
-
- cd $SRC/sqlite-tea-$_amalgamationver
- ./configure --prefix=/usr \
- --with-system-sqlite \
- --enable-static \
- --enable-threadsafe \
- --enable-readline \
- --enable-dynamic-extensions
-
- make
make DESTDIR=$PKG install
+ cd $SRC/sqlite-autoconf-$_amalgamationver/tea
+ ./configure --prefix=/usr \
+ --with-system-sqlite
+ make
+ make DESTDIR=$PKG install
-# cd sqlite*
-# CFLAGS="-O2 -DSQLITE_SECURE_DELETE -DSQLITE_ENABLE_UNLOCK_NOTIFY=1" \
-# ./configure --prefix=/usr \
-# --enable-threadsafe \
-# --enable-readline \
-# --enable-dynamic-extensions
-# make
-# make DESTDIR=$PKG install
-# install -d $PKG/usr/share/man/man1
-# install -m 644 sqlite3.1 $PKG/usr/share/man/man1
}
-