2010-03-13 23:25:19 +08:00
|
|
|
# $Id: PKGBUILD 63193 2010-01-15 20:00:32Z andyrtr $
|
|
|
|
# Maintainer: Andreas Radke <andyrtr@archlinux.org>
|
|
|
|
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
|
|
|
|
|
|
|
|
pkgname=sqlite3
|
|
|
|
pkgver=3.6.22
|
2010-03-22 04:46:45 +08:00
|
|
|
pkgrel=2
|
2010-03-13 23:25:19 +08:00
|
|
|
pkgdesc="A C library that implements an SQL database engine"
|
|
|
|
arch=('i686' 'x86_64')
|
|
|
|
license=('custom')
|
|
|
|
url="http://www.sqlite.org/"
|
|
|
|
depends=('readline>=6.0.00')
|
2010-03-22 01:35:58 +08:00
|
|
|
# makedepends=('tcl')
|
2010-03-13 23:25:19 +08:00
|
|
|
conflicts=('sqlite')
|
|
|
|
replaces=('sqlite')
|
2010-03-22 01:35:58 +08:00
|
|
|
source=(#http://www.sqlite.org/sqlite-$pkgver.tar.gz
|
|
|
|
http://www.sqlite.org/sqlite-amalgamation-$pkgver.tar.gz
|
2010-03-13 23:25:19 +08:00
|
|
|
license.txt)
|
|
|
|
options=(!libtool)
|
2010-03-22 01:35:58 +08:00
|
|
|
md5sums=('b683b3903e79ab8a6d928dc9d4a56937'
|
2010-03-13 23:25:19 +08:00
|
|
|
'c1cdbc5544034d9012e421e75a5e4890')
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd ${srcdir}/sqlite-${pkgver}
|
2010-03-22 01:35:58 +08:00
|
|
|
|
|
|
|
rm -rf src/tclsqlite.c
|
|
|
|
|
2010-03-13 23:25:19 +08:00
|
|
|
export LTLINK_EXTRAS="-ldl"
|
|
|
|
export CFLAGS="$CFLAGS -DSQLITE_ENABLE_FTS3=1 -DSQLITE_ENABLE_COLUMN_METADATA=1"
|
|
|
|
./configure --prefix=/usr \
|
|
|
|
--enable-threadsafe \
|
2010-03-22 01:35:58 +08:00
|
|
|
--disable-static || return 1
|
|
|
|
|
|
|
|
# --enable-threads-override-locks \
|
|
|
|
# --enable-cross-thread-connections \
|
|
|
|
# --disable-tcl \
|
|
|
|
# --enable-load-extension
|
2010-03-13 23:25:19 +08:00
|
|
|
|
|
|
|
# rpath removal
|
|
|
|
sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
|
|
|
|
sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
|
|
|
|
|
|
|
|
make || return 1
|
|
|
|
make DESTDIR=${pkgdir} install || return 1
|
|
|
|
install -Dm0644 sqlite3.1 ${pkgdir}/usr/share/man/man1/sqlite3.1
|
|
|
|
|
|
|
|
# license
|
|
|
|
install -Dm644 ${srcdir}/license.txt ${pkgdir}/usr/share/licenses/${pkgname}/license.txt
|
|
|
|
}
|