Files
haikuports/dev-db/sqlite/sqlite-3.6.23.recipe
Oliver Tappe 60aba35d64 * convert all .bep files to follow shell syntax
* rename all .bep files to .recipe
2013-03-29 16:31:03 +00:00

26 lines
582 B
Plaintext

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.23.tar.gz"
REVISION="1"
STATUS_HAIKU="stable"
DEPEND=""
CHECKSUM_MD5="8f1e86b3909a27f8122b0981afd16fcd"
BUILD()
{
cd sqlite-3.6.23
libtoolize --force --copy --install
aclocal
autoconf
automake
./configure --prefix=`finddir B_COMMON_DIRECTORY`
make
}
INSTALL()
{
cd sqlite-3.6.23
make install
}
LICENSE="SQLite"
COPYRIGHT="Public Domain"