opt/sqlite3/Pkgfile

27 lines
555 B
Plaintext
Raw Normal View History

2006-11-10 16:21:43 +01:00
# Description: SQL database engine
# URL: http://www.sqlite.org/
2008-07-11 09:29:19 +02:00
# Maintainer: Juergen Daubert, juergen dot daubert at t-online dot de
2006-11-10 16:21:43 +01:00
# Depends on: ncurses, readline
name=sqlite3
2009-01-16 16:12:43 +01:00
version=3.6.10
2008-02-13 12:33:44 +01:00
release=1
2006-11-10 16:21:43 +01:00
source=(http://www.sqlite.org/sqlite-amalgamation-$version.tar.gz
sqlite3-pkgconfig.patch)
2006-11-10 16:21:43 +01:00
build () {
cd sqlite-amalgamation-$version
patch -p1 -i $SRC/sqlite3-pkgconfig.patch
autoreconf -f
libtoolize -fq
CFLAGS="$CFLAGS -DNDEBUG" \
./configure --prefix=/usr
2006-11-10 16:21:43 +01:00
make
make DESTDIR=$PKG install
}