mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-10 22:00:09 +02:00
26 lines
579 B
Plaintext
26 lines
579 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.7.3.tar.gz"
|
|
REVISION="1"
|
|
STATUS_HAIKU="stable"
|
|
DEPEND=""
|
|
CHECKSUM_MD5="74fe78b264f1c434c4b159d45b78e9b7"
|
|
BUILD()
|
|
{
|
|
cd sqlite-3.7.3
|
|
libtoolize --force --copy --install
|
|
aclocal
|
|
autoconf
|
|
automake
|
|
./configure --prefix=`finddir B_COMMON_DIRECTORY`
|
|
make
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
cd sqlite-3.7.3
|
|
make install
|
|
}
|
|
LICENSE="SQLite"
|
|
COPYRIGHT="Public Domain"
|