opt/sqlite3/Pkgfile

27 lines
555 B
Plaintext

# Description: SQL database engine
# URL: http://www.sqlite.org/
# Maintainer: Juergen Daubert, juergen dot daubert at t-online dot de
# Depends on: ncurses, readline
name=sqlite3
version=3.6.10
release=1
source=(http://www.sqlite.org/sqlite-amalgamation-$version.tar.gz
sqlite3-pkgconfig.patch)
build () {
cd sqlite-amalgamation-$version
patch -p1 -i $SRC/sqlite3-pkgconfig.patch
autoreconf -f
libtoolize -fq
CFLAGS="$CFLAGS -DNDEBUG" \
./configure --prefix=/usr
make
make DESTDIR=$PKG install
}