CRUX PPC
A lightweight GNU/Linux distribution for PowerPC!
Subversion Repository
Parent Directory
|
Revision Log
Revision 508 -
(hide annotations)
Sun Oct 4 15:03:59 2009 UTC (3 years, 7 months ago) by cjg
File size: 521 byte(s)
Sun Oct 4 15:03:59 2009 UTC (3 years, 7 months ago) by cjg
File size: 521 byte(s)
sqlite3: autoupdated to 3.6.11-1
| 1 | cjg | 201 | # Description: SQL database engine |
| 2 | cjg | 348 | # URL: http://www.sqlite.org/ |
| 3 | # Maintainer: Juergen Daubert, juergen dot daubert at t-online dot de | ||
| 4 | # Depends on: ncurses, readline | ||
| 5 | cjg | 201 | |
| 6 | name=sqlite3 | ||
| 7 | cjg | 508 | version=3.6.11 |
| 8 | cjg | 201 | release=1 |
| 9 | |||
| 10 | cjg | 508 | source=(http://www.sqlite.org/sqlite-amalgamation-$version.tar.gz) |
| 11 | cjg | 201 | |
| 12 | build () { | ||
| 13 | cjg | 508 | cd sqlite-$version |
| 14 | cjg | 360 | |
| 15 | cjg | 508 | # http://www.sqlite.org/cvstrac/tktview?tn=3583 |
| 16 | sed -i 's/@RELEASE@/@VERSION@/' sqlite3.pc.in | ||
| 17 | cjg | 360 | |
| 18 | cjg | 508 | ./configure --prefix=/usr CFLAGS="$CFLAGS -DNDEBUG" |
| 19 | cjg | 360 | |
| 20 | cjg | 201 | make |
| 21 | make DESTDIR=$PKG install | ||
| 22 | } |