CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
fltk2: Updated to version r7513.
[attic/ports/opt-cross.git] / sqlite3 / Pkgfile
1 # Description: SQL database engine
2 # URL: http://www.sqlite.org/
3 # Maintainer: Juergen Daubert, juergen dot daubert at t-online dot de
4 # Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu
5 # Depends on: ncurses readline
6
7 name=sqlite3
8 version=3.6.23.1
9 release=1
10
11 source=(http://www.sqlite.org/sqlite-amalgamation-$version.tar.gz)
12
13 build () {
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 }