freebsd-ports/security/sedutil/Makefile
Steve Wills 2aac3e0e77 security/sedutil: create port
Self Encrypting Drive utility.

This allows encrypting and decrypting drives that use encryption based on
the various TCG (Trusted Computing Group) specifications.

From the web site:

   The Drive Trust Alliance software (sedutil) is an Open Source (GPLv3)
   effort to make Self Encrypting Drive technology freely available to
   everyone. It is a combination of the two known available Open Source code
   bases today: msed and OpalTool.

   The DTA Open Source can be employed freely not only for higher security
   applications but also for integration in embedded applications such as
   Automotive, Aerospace, Home Automation, and everywhere where the Data
   Leakage problem has already become obvious and where it will be obvious.
   The storage device suppliers are already gearing to give you
   self-encrypting storage. All you have to do is work with them.

For more information:

WWW: https://github.com/Drive-Trust-Alliance/sedutil

PR:		219408
Submitted by:	ken
2020-04-03 00:44:49 +00:00

30 lines
522 B
Makefile

# $FreeBSD$
PORTNAME= sedutil
PORTVERSION= 1.12
CATEGORIES= security
MAINTAINER= ken@FreeBSD.org
COMMENT= Self Encrypting Drive utility
LICENSE= GPLv3+
USES= gmake pkgconfig
USE_GITHUB= yes
GH_ACCOUNT= kendmerry
GH_PROJECT= sedutil
GH_TAGNAME= 3122ba0
WRKSRC_SUBDIR= freebsd/CLI
ALL_TARGET= build
PLIST_FILES+= bin/sedutil-cli
SEDUTIL_SD= ${WRKSRC}/dist/Release/CLang-Generic
SEDUTIL_PROG= sedutil-cli
do-install:
${INSTALL_PROGRAM} ${SEDUTIL_SD}/${SEDUTIL_PROG} ${STAGEDIR}${PREFIX}/bin
.include <bsd.port.mk>