opt/sqlite3/Pkgfile

19 lines
453 B
Plaintext
Raw Normal View History

2006-11-10 16:21:43 +01:00
# Description: SQL database engine
# URL: http://www.sqlite.org/
2011-02-02 13:44:37 +01:00
# Maintainer: Juergen Daubert, jue at crux dot nu
2006-11-10 16:21:43 +01:00
# Depends on: ncurses, readline
name=sqlite3
2012-05-22 17:12:15 +02:00
version=3.7.12.1
2010-01-08 12:40:23 +01:00
release=1
2012-01-16 19:46:09 +01:00
_version=$(printf "%i%.2i%.2i%.2i" ${version//./ })
2006-11-10 16:21:43 +01:00
2012-01-16 19:46:09 +01:00
source=(http://www.sqlite.org/sqlite-autoconf-${_version}.tar.gz)
2006-11-10 16:21:43 +01:00
build () {
2012-01-16 19:46:09 +01:00
cd sqlite-autoconf-${_version}
2010-03-11 17:38:29 +01:00
./configure --prefix=/usr --mandir=/usr/man
2006-11-10 16:21:43 +01:00
make
make DESTDIR=$PKG install
}