forked from Lainports/freebsd-ports
Ruby-GPGME is a Ruby language binding of GPGME (GnuPG Made Easy). GnuPG Made Easy (GPGME) is a library designed to make access to GnuPG easier for applications. It provides a High-Level Crypto API for encryption, decryption, signing, signature verification and key management. WWW: https://github.com/ueno/ruby-gpgme
26 lines
619 B
Makefile
26 lines
619 B
Makefile
# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= gpgme
|
|
PORTVERSION= 2.0.13
|
|
CATEGORIES= security rubygems
|
|
MASTER_SITES= RG
|
|
|
|
MAINTAINER= sunpoet@FreeBSD.org
|
|
COMMENT= Ruby interface to GnuPG Made Easy (GPGME)
|
|
|
|
LICENSE= LGPL21+
|
|
|
|
BUILD_DEPENDS= gpgme-config:security/gpgme
|
|
LIB_DEPENDS= libassuan.so:security/libassuan \
|
|
libgpg-error.so:security/libgpg-error
|
|
RUN_DEPENDS= gpgme-config:security/gpgme
|
|
|
|
CONFIGURE_ARGS= --use-system-libraries
|
|
USE_RUBY= yes
|
|
USES= gem
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e '/mini_portile2/d' ${WRKSRC}/gpgme.gemspec ${WRKSRC}/ext/gpgme/extconf.rb
|
|
|
|
.include <bsd.port.mk>
|