CRUX PPC
A lightweight GNU/Linux distribution for PowerPC!
Subversion Repository
Parent Directory
|
Revision Log
Revision 642 -
(show annotations)
Sun Oct 4 15:05:18 2009 UTC (3 years, 7 months ago) by cjg
File size: 418 byte(s)
Sun Oct 4 15:05:18 2009 UTC (3 years, 7 months ago) by cjg
File size: 418 byte(s)
sqlite3: autoupdated to 3.6.15-1
| 1 | # Description: SQL database engine |
| 2 | # URL: http://www.sqlite.org/ |
| 3 | # Maintainer: Juergen Daubert, juergen dot daubert at t-online dot de |
| 4 | # Depends on: ncurses, readline |
| 5 | |
| 6 | name=sqlite3 |
| 7 | version=3.6.15 |
| 8 | release=1 |
| 9 | |
| 10 | source=(http://www.sqlite.org/sqlite-amalgamation-$version.tar.gz) |
| 11 | |
| 12 | build () { |
| 13 | cd sqlite-$version |
| 14 | |
| 15 | ./configure --prefix=/usr CFLAGS="$CFLAGS -DNDEBUG" |
| 16 | |
| 17 | make |
| 18 | make DESTDIR=$PKG install |
| 19 | } |