File::KeePass gives access to KeePass version 1 (kdb) and version 2 (kdbx) databases. The version 1 and version 2 databases are very different in construction, but the majority of information overlaps and many algorithms are similar. File::KeePass attempts to iron out as many of the differences. File::KeePass gives nearly raw data access. There are a few utility methods for manipulating groups and entries. More advanced manipulation can easily be layered on top by other modules. ok ajacoutot@
17 lines
325 B
Makefile
17 lines
325 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2015/05/01 15:39:26 landry Exp $
|
|
|
|
COMMENT = interface to KeePass V1 and V2 database files
|
|
|
|
MODULES = cpan
|
|
|
|
DISTNAME = File-KeePass-2.03
|
|
CATEGORIES = textproc
|
|
|
|
# Artistic
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
|
|
RUN_DEPENDS = security/p5-Crypt-Rijndael
|
|
BUILD_DEPENDS = ${RUN_DEPENDS}
|
|
|
|
.include <bsd.port.mk>
|