706c813a35
SQLite is a C library that implements an embeddable SQL database engine. Programs that link with the SQLite library can have SQL database access without running a separate RDBMS process. The distribution comes with a standalone command-line access program (sqlite) that can be used to administer an SQLite database and which serves as an example of how to use the SQLite library. SQLite is not a client library used to connect to a big database server. SQLite is the server. The SQLite library reads and writes directly to and from the database files on disk. with help from Aleksander Piotrowski; help & ok sturm@
28 lines
556 B
Makefile
28 lines
556 B
Makefile
# $OpenBSD: Makefile,v 1.1 2004/02/18 20:59:24 djm Exp $
|
|
|
|
COMMENT= "Embedded SQL implementation"
|
|
|
|
DISTNAME= sqlite-2.8.12
|
|
CATEGORIES= databases
|
|
HOMEPAGE= http://www.hwaci.com/sw/sqlite/
|
|
MASTER_SITES= ${HOMEPAGE}
|
|
|
|
MAINTAINER= Damien Miller <djm@openbsd.org>
|
|
|
|
# Public Domain
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
CONFIGURE_STYLE= autoconf dest
|
|
AUTOCONF_VERSION= 2.57
|
|
USE_GMAKE= Yes
|
|
WRKDIST= ${WRKDIR}/sqlite
|
|
CONFIGURE_ARGS= ${CONFIGURE_SHARED}
|
|
|
|
NO_REGRESS= Yes
|
|
|
|
.include <bsd.port.mk>
|
|
|