Initial .bep file for sqlite

This commit is contained in:
Scott McCreary
2010-03-09 05:25:16 +00:00
parent 2dfeaea4ee
commit 2828b97e4c
2 changed files with 22 additions and 1 deletions

View File

@@ -0,0 +1,21 @@
DESCRIPTION="SQLite is a software library that implements a self-contained, serverless, zero-configuration, transactional SQL database engine."
HOMEPAGE="http://www.sqlite.org/"
SRC_URI="http://www.sqlite.org/sqlite-amalgamation-3.6.22.tar.gz"
REVISION="1"
STATUS_HAIKU="stable"
DEPEND=""
CHECKSUM_MD5="b683b3903e79ab8a6d928dc9d4a56937"
BUILD {
cd sqlite-3.6.22
libtoolize --force --copy --install
aclocal
autoconf
automake
./configure --prefix=/boot/common
make
}
INSTALL {
cd sqlite-3.6.22
make install
}