sqlite3 3.7.17

This commit is contained in:
AlmAck 2013-09-19 21:57:21 +00:00
parent 2514da832e
commit 1b860c377e

View File

@ -5,23 +5,22 @@
pkgbase="sqlite3" pkgbase="sqlite3"
pkgname=('sqlite3' 'sqlite3-tcl' 'sqlite3-doc') pkgname=('sqlite3' 'sqlite3-tcl' 'sqlite3-doc')
_amalgamationver=3071502 _amalgamationver=3071700
_amalgamationver2=${_amalgamationver/00/} _docver=${_amalgamationver}
_docver=3071502 pkgver=3.7.17
pkgver=3.7.15.2
pkgrel=1 pkgrel=1
pkgdesc="A C library that implements an SQL database engine" pkgdesc="A C library that implements an SQL database engine"
arch=('x86_64') arch=('x86_64')
license=('custom') license=('custom:Public Domain')
url="http://www.sqlite.org/" url="http://www.sqlite.org/"
makedepends=('tcl' 'readline>=6.0.00') makedepends=('tcl' 'readline')
source=( # tarball containing the amalgamation for SQLite 3.7.5 together with a configure script and makefile for building it; includes now also the Tcl Extension Architecture (TEA) source=( # tarball containing the amalgamation for SQLite >= 3.7.5 together with a configure script and makefile for building it; includes now also the Tcl Extension Architecture (TEA)
http://www.sqlite.org/sqlite-autoconf-$_amalgamationver.tar.gz http://www.sqlite.org/2013/sqlite-autoconf-$_amalgamationver.tar.gz
http://www.sqlite.org/sqlite-doc-${_docver}.zip http://www.sqlite.org/2013/sqlite-doc-${_docver}.zip
license.txt) license.txt)
options=('!libtool' '!emptydirs') options=('!libtool' '!emptydirs')
md5sums=('bcb0ab0b5b30116b2531cfeef3c861b4' md5sums=('18c285053e9562b848209cb0ee16d4ab'
'159594c17290291fbbb47ee190b180f9' 'f8a99a3db44c9564b32fc47eca6d8cf0'
'c1cdbc5544034d9012e421e75a5e4890') 'c1cdbc5544034d9012e421e75a5e4890')
build() { build() {
@ -44,7 +43,7 @@ build() {
package_sqlite3() { package_sqlite3() {
pkgdesc="A C library that implements an SQL database engine" pkgdesc="A C library that implements an SQL database engine"
depends=('readline>=6.0.00') depends=('readline')
conflicts=('sqlite') conflicts=('sqlite')
replaces=('sqlite') replaces=('sqlite')
@ -62,6 +61,10 @@ package_sqlite3-tcl() {
cd ${srcdir}/sqlite-autoconf-$_amalgamationver/tea cd ${srcdir}/sqlite-autoconf-$_amalgamationver/tea
make DESTDIR=${pkgdir} install make DESTDIR=${pkgdir} install
# link license
install -m755 -d ${pkgdir}/usr/share/licenses
ln -sf /usr/share/licenses/${pkgbase} "${pkgdir}/usr/share/licenses/${pkgname}"
} }
package_sqlite3-doc() { package_sqlite3-doc() {