375c34653a
- Add libtool to USES PR: ports/191618 Submitted by: matt@mjslabs.com [1]
38 lines
751 B
Makefile
38 lines
751 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= libyubikey
|
|
PORTVERSION= 1.12
|
|
CATEGORIES= security devel
|
|
MASTER_SITES= http://opensource.yubico.com/yubico-c/releases/
|
|
|
|
MAINTAINER= matt@mjslabs.com
|
|
COMMENT= Library for decrypting and parsing YubiKey One-Time Passwords
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_LDCONFIG= yes
|
|
USES= libtool
|
|
|
|
PLIST_FILES= bin/modhex \
|
|
bin/ykgenerate \
|
|
bin/ykparse \
|
|
include/yubikey.h \
|
|
lib/libyubikey.so \
|
|
lib/libyubikey.so.0 \
|
|
lib/libyubikey.so.0.1.6 \
|
|
man/man1/modhex.1.gz \
|
|
man/man1/ykgenerate.1.gz \
|
|
man/man1/ykparse.1.gz
|
|
|
|
MAKE_JOBS_UNSAFE= yes
|
|
|
|
OPTIONS_DEFINE= STATIC
|
|
|
|
STATIC_CONFIGURE_ENABLE= static
|
|
STATIC_PLIST_FILES= lib/libyubikey.a
|
|
|
|
regression-test: build
|
|
@(cd ${WRKSRC}; ${MAKE} check)
|
|
|
|
.include <bsd.port.mk>
|