mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-11 06:10:06 +02:00
27 lines
680 B
Plaintext
27 lines
680 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-autoconf-3070602.tar.gz"
|
|
REVISION="1"
|
|
STATUS_HAIKU="stable"
|
|
DEPEND=""
|
|
CHECKSUM_MD5="f16c08617968b4087b3d591fd575f59f"
|
|
BUILD {
|
|
cd sqlite-autoconf-3070602
|
|
libtoolize --force --copy --install
|
|
aclocal
|
|
autoconf
|
|
automake
|
|
COMMON_DOCS=`finddir B_COMMON_DOCUMENTATION_DIRECTORY`
|
|
./configure --prefix=`finddir B_COMMON_DIRECTORY` \
|
|
--mandir=$COMMON_DOCS/man
|
|
make
|
|
}
|
|
|
|
INSTALL {
|
|
cd sqlite-autoconf-3070602
|
|
make install
|
|
}
|
|
|
|
LICENSE="SQLite"
|
|
COPYRIGHT="Public Domain"
|