2e583aadb5
- new tool ykinfo prints serial number, version, touch level from a yubikey - add -z flag to ykpersonalize to zap configuration on yubikey - fix PBKDF2 implementation - new yk_challenge_response() lib function for challenge/response with a key
34 lines
710 B
Makefile
34 lines
710 B
Makefile
# $OpenBSD: Makefile,v 1.3 2012/11/08 21:46:21 sthen Exp $
|
|
|
|
COMMENT= library and tools to program YubiKeys
|
|
|
|
DISTNAME= ykpers-1.9.0
|
|
|
|
SHARED_LIBS += ykpers-1 0.0 # 7.3
|
|
|
|
CATEGORIES= sysutils
|
|
|
|
HOMEPAGE= http://code.google.com/p/yubikey-personalization/
|
|
|
|
MAINTAINER= Stuart Henderson <sthen@openbsd.org>
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
WANTLIB += c pthread usb-1.0 yubikey
|
|
|
|
MASTER_SITES= http://yubikey-personalization.googlecode.com/files/
|
|
|
|
LIB_DEPENDS= devel/libyubikey \
|
|
devel/libusb1>=1.0.9p1
|
|
|
|
SEPARATE_BUILD= Yes
|
|
USE_LIBTOOL= Yes
|
|
CONFIGURE_STYLE= gnu
|
|
CONFIGURE_ARGS= ${CONFIGURE_SHARED}
|
|
|
|
.include <bsd.port.mk>
|