18 lines
408 B
Plaintext
18 lines
408 B
Plaintext
# Description: SQL database engine
|
|
# URL: http://www.sqlite.org/
|
|
# Maintainer: Juergen Daubert, jue at crux dot nu
|
|
# Depends on: ncurses, readline
|
|
|
|
name=sqlite3
|
|
version=3.7.6.3
|
|
release=1
|
|
|
|
source=(http://www.sqlite.org/sqlite-autoconf-${version//./0}.tar.gz)
|
|
|
|
build () {
|
|
cd sqlite-autoconf-${version//./0}
|
|
./configure --prefix=/usr --mandir=/usr/man
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|