2009-09-26 14:35:50 +00:00
|
|
|
# Maintainer: Krzysztof "hiciu" Warzecha <kwarzecha7@gmail.com>
|
2009-09-26 17:10:12 +00:00
|
|
|
# Modified by OpenPogo
|
|
|
|
|
2009-09-26 14:35:50 +00:00
|
|
|
pkgname=sqlite3
|
|
|
|
pkgver=3.6.13
|
|
|
|
pkgrel=1
|
|
|
|
pkgdesc="A C library that implements an SQL database engine"
|
|
|
|
arch=(arm)
|
|
|
|
license=('custom')
|
|
|
|
url="http://www.sqlite.org/"
|
|
|
|
depends=('readline')
|
|
|
|
makedepends=('tcl')
|
|
|
|
conflicts=('sqlite')
|
|
|
|
replaces=('sqlite')
|
2009-09-26 17:10:12 +00:00
|
|
|
source=('http://www.sqlite.org/sqlite-3.6.13.tar.gz'
|
|
|
|
'license.txt')
|
2009-09-26 14:35:50 +00:00
|
|
|
options=(!libtool)
|
|
|
|
md5sums=('652a01797e7538811e4997a5847bc026'
|
|
|
|
'c1cdbc5544034d9012e421e75a5e4890')
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd ${srcdir}/sqlite-${pkgver}
|
|
|
|
export LTLINK_EXTRAS="-ldl"
|
|
|
|
export CFLAGS="$CFLAGS -DSQLITE_ENABLE_FTS3=1 -DSQLITE_ENABLE_COLUMN_METADATA=1"
|
2009-09-26 17:10:12 +00:00
|
|
|
./configure --prefix=/opt \
|
2009-09-26 14:35:50 +00:00
|
|
|
--enable-threadsafe \
|
|
|
|
--enable-threads-override-locks \
|
|
|
|
--enable-cross-thread-connections \
|
|
|
|
--disable-static \
|
|
|
|
--enable-load-extension || return 1
|
|
|
|
make || return 1
|
|
|
|
make DESTDIR=${pkgdir} install || return 1
|
2009-09-26 17:10:12 +00:00
|
|
|
install -Dm0644 sqlite3.1 ${pkgdir}/opt/share/man/man1/sqlite3.1
|
|
|
|
mv ${pkgdir}/usr/lib/tcl8.5 ${pkgdir}/opt/lib/
|
|
|
|
rm -rf ${pkgdir}/usr
|
2009-09-26 14:35:50 +00:00
|
|
|
|
|
|
|
# license
|
2009-09-26 17:10:12 +00:00
|
|
|
install -Dm644 ${srcdir}/license.txt ${pkgdir}/opt/share/licenses/${pkgname}/license.txt
|
2009-09-26 14:35:50 +00:00
|
|
|
}
|