diff options
Diffstat (limited to 'sqlite3/Pkgfile')
-rw-r--r-- | sqlite3/Pkgfile | 22 |
1 files changed, 7 insertions, 15 deletions
diff --git a/sqlite3/Pkgfile b/sqlite3/Pkgfile index 1cbd05e58..4df3e1b86 100644 --- a/sqlite3/Pkgfile +++ b/sqlite3/Pkgfile @@ -6,15 +6,13 @@ name=sqlite3 version=3.7.10 -release=1 +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,17 +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 } |