From e73e25f6e49da65955026fb2add74c0c24f6d622 Mon Sep 17 00:00:00 2001 From: Scott McCreary Date: Fri, 5 Apr 2013 15:43:33 +0000 Subject: [PATCH] Update sqlite to 3.7.16.1 --- dev-db/sqlite/sqlite-3.7.16.1.recipe | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 dev-db/sqlite/sqlite-3.7.16.1.recipe diff --git a/dev-db/sqlite/sqlite-3.7.16.1.recipe b/dev-db/sqlite/sqlite-3.7.16.1.recipe new file mode 100644 index 000000000..021d16a6f --- /dev/null +++ b/dev-db/sqlite/sqlite-3.7.16.1.recipe @@ -0,0 +1,28 @@ +DESCRIPTION="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-3071601.tar.gz" +REVISION="1" +STATUS_HAIKU="stable" +DEPEND="" +CHECKSUM_MD5="8860d1a1ed26d40f07e3c7ae035b644a" +BUILD() +{ + cd sqlite-autoconf-3071601 + 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-3071601 + make install +} + +LICENSE="SQLite" +COPYRIGHT="2013 Public Domain"