Files
Arch-R/packages/databases/sqlite/build

26 lines
529 B
Plaintext
Raw Normal View History

2009-04-06 13:29:18 +02:00
#!/bin/sh
. config/options $1
2009-04-06 13:29:18 +02:00
2010-06-13 22:56:09 +02:00
# sqlite fails to compile with fast-math link time optimization.
CFLAGS=`echo $CFLAGS | sed -e "s|-ffast-math||"`
cd $PKG_BUILD
2009-04-06 13:29:18 +02:00
./configure --host=$TARGET_NAME \
--build=$HOST_NAME \
--prefix=/usr \
--sysconfdir=/etc \
--disable-static \
--enable-shared \
2009-04-17 15:34:03 +02:00
--disable-readline \
--enable-threadsafe \
--enable-dynamic-extensions \
--with-gnu-ld
2009-04-06 13:29:18 +02:00
make
$STRIP .libs/sqlite3
$MAKEINSTALL