23b300fe8e
with sqlite version 2 (everything in this package ends in `3'). DESCR: SQLite is a C library that implements an 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.
27 lines
684 B
Makefile
27 lines
684 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2005/01/16 02:00:33 tv Exp $
|
|
|
|
DISTNAME= sqlite-3.0.8
|
|
PKGNAME= ${DISTNAME:S/-/3-/}
|
|
CATEGORIES= databases
|
|
MASTER_SITES= http://www.hwaci.com/sw/sqlite/ \
|
|
http://www.sqlite.org/
|
|
|
|
MAINTAINER= tech-pkg@NetBSD.org
|
|
HOMEPAGE= http://www.hwaci.com/sw/sqlite/
|
|
COMMENT= SQL Database Engine in a C Library
|
|
|
|
WRKSRC= ${WRKDIR}/sqlite
|
|
USE_BUILDLINK3= yes
|
|
USE_GNU_TOOLS+= make
|
|
USE_LIBTOOL= yes
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --without-tcl
|
|
|
|
PKGCONFIG_OVERRIDE= ${WRKDIR}/sqlite/sqlite3.pc.in
|
|
|
|
post-install:
|
|
${INSTALL_MAN} ${WRKSRC}/sqlite.1 ${PREFIX}/man/man1/sqlite3.1
|
|
|
|
.include "../../devel/readline/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|