4e3069b817
SQLite is a small fast embedded SQL database engine. DBD::SQLite2 embeds that database engine into a DBD driver, so if you want a relational database for your project, but don't want to install a large RDBMS system like MySQL or PostgreSQL, then DBD::SQLite2 may be just what you need. Note: DBD::SQLite2 is the old version of DBD::SQLite, and embeds version 2.x.x of the sqlite library. The current version of DBD::SQLite embeds version 3 or possibly later. This release is designed to allow to have both versions installed on the same system.
21 lines
582 B
Makefile
21 lines
582 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2007/05/20 00:39:39 heinz Exp $
|
|
#
|
|
|
|
DISTNAME= DBD-SQLite2-0.33
|
|
PKGNAME= p5-${DISTNAME}
|
|
CATEGORIES= databases perl5
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=DBD/}
|
|
|
|
MAINTAINER= heinz@NetBSD.org
|
|
HOMEPAGE= http://search.cpan.org/dist/DBD-SQLite2/
|
|
COMMENT= Perl DBI/DBD driver for sqlite v2 databases
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
PKG_INSTALLATION_TYPES= overwrite pkgviews
|
|
|
|
USE_LANGUAGES= c
|
|
PERL5_PACKLIST= auto/DBD/SQLite2/.packlist
|
|
|
|
.include "../../databases/p5-DBI/buildlink3.mk"
|
|
.include "../../lang/perl5/module.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|