CRUX PPC
A lightweight GNU/Linux distribution for PowerPC!
Subversion Repository
Parent Directory
|
Revision Log
Revision 201 -
(hide annotations)
Sun Oct 4 15:01:40 2009 UTC (3 years, 7 months ago) by cjg
File size: 546 byte(s)
Sun Oct 4 15:01:40 2009 UTC (3 years, 7 months ago) by cjg
File size: 546 byte(s)
importing opt
| 1 | cjg | 201 | # Description: SQL database engine |
| 2 | # URL: http://www.sqlite.org/ | ||
| 3 | # Packager: Juergen Daubert, juergen dot daubert at t-online dot de | ||
| 4 | # Maintainer: The Crux PPC Team | ||
| 5 | # Depends on: ncurses, readline | ||
| 6 | |||
| 7 | name=sqlite3 | ||
| 8 | version=3.6.1 | ||
| 9 | release=1 | ||
| 10 | |||
| 11 | source=(http://www.sqlite.org/sqlite-$version.tar.gz) | ||
| 12 | |||
| 13 | build () { | ||
| 14 | cd sqlite-$version | ||
| 15 | ./configure --prefix=/usr \ | ||
| 16 | --enable-threadsafe \ | ||
| 17 | --disable-tcl | ||
| 18 | make | ||
| 19 | make DESTDIR=$PKG install | ||
| 20 | install -d $PKG/usr/man/man1 | ||
| 21 | install -m 644 sqlite3.1 $PKG/usr/man/man1 | ||
| 22 | } |