Files
haikuports/dev-db/sqlite/sqlite-3.7.5.recipe
Ingo Weinhold 7ea2ed82fe Update sqlite 3.7.5 recipe
* Correct version of provided lib:libsqlite3 -- it has it's own
  versioning.
* Drop provided lib:libsqlite.
* Move the development library stuff to develop/lib.
2013-04-25 23:51:42 +02:00

58 lines
1.1 KiB
Plaintext

SUMMARY="An SQL database engine in a C library"
DESCRIPTION="
SQLite is a software library that implements a self-contained,
serverless, zero-configuration, transactional SQL database engine.
SQLite is the most widely deployed SQL database engine in the world.
The source code for SQLite is in the public domain.
"
HOMEPAGE="http://www.sqlite.org/"
SRC_URI="http://www.sqlite.org/sqlite-autoconf-3070500.tar.gz"
CHECKSUM_MD5="a9604a82613ade2e7f4c303f233e477f"
LICENSE="SQLite"
COPYRIGHT="Public Domain"
REVISION="6"
ARCHITECTURES="x86_gcc2 ?x86"
PROVIDES="
sqlite = $portVersion compat >= 3
cmd:sqlite3 = $portVersion compat >= 3
lib:libsqlite3 = 0.8.6 compat >= 0
"
REQUIRES="
haiku >= $haikuVersion
"
BUILD_REQUIRES="
cmd:aclocal
cmd:autoconf
cmd:automake
cmd:gcc
cmd:ld
cmd:libtoolize
cmd:make
"
BUILD_PREREQUIRES="
haiku_devel >= $haikuVersion
"
SOURCE_DIR="sqlite-autoconf-3070500"
BUILD()
{
libtoolize --force --copy --install
aclocal
autoconf
automake
./configure $configureDirArgs
make
}
INSTALL()
{
make install
# prepare develop/lib
prepareInstalledDevelLibs libsqlite3
mv $libDir/pkgconfig $developLibDir/
}