32 lines
700 B
Makefile
32 lines
700 B
Makefile
COMMENT = sources of the Ruby OpenSSL gem for regression testing
|
|
|
|
# Follows HEAD
|
|
VERSION = 20230831
|
|
DISTNAME = openssl-ruby-tests-${VERSION}
|
|
|
|
GH_ACCOUNT = ruby
|
|
GH_PROJECT = openssl
|
|
GH_COMMIT = bdf060f85c5c297bb78c19d83c7511dbe7c418be
|
|
|
|
CATEGORIES = security devel
|
|
|
|
MAINTAINER = Theo Buehler <tb@openbsd.org>
|
|
|
|
# BSD 2-Clause
|
|
PERMIT_PACKAGE = Yes
|
|
|
|
MODULES = lang/ruby
|
|
|
|
NO_BUILD = Yes
|
|
NO_TEST = Yes
|
|
|
|
RUN_DEPENDS = devel/ruby-test-unit-ruby-core,${MODRUBY_FLAVOR}
|
|
|
|
OPENSSL_TESTS_DIR = ${PREFIX}/share/openssl-ruby-tests
|
|
|
|
do-install:
|
|
${INSTALL_DATA_DIR} ${OPENSSL_TESTS_DIR}
|
|
cd ${WRKSRC} && \
|
|
pax -rw -s '/^.*${PATCHORIG}$$//' BSDL ext lib test ${OPENSSL_TESTS_DIR}
|
|
|
|
.include <bsd.port.mk>
|