CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
libsoup: removed verbose output.
[attic/ports/opt-cross.git] / sqlite3 / Pkgfile
CommitLineData
d39e1f39
JB
1# Description: SQL database engine
2# URL: http://www.sqlite.org/
3# Maintainer: Juergen Daubert, juergen dot daubert at t-online dot de
38b50d66 4# Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu
d39e1f39
JB
5# Depends on: ncurses readline
6
7name=sqlite3
8version=3.6.23.1
9release=1
10
11source=(http://www.sqlite.org/sqlite-amalgamation-$version.tar.gz)
12
13build () {
14 cd sqlite-$version
15
16 ./configure --build=$CHOST \
17 --host=$CTARGET \
18 --prefix=/usr \
19 --mandir=/usr/man
20
21 make
22 make DESTDIR=$PKG install
23}