mirror of
https://github.com/openbsd/ports.git
synced 2026-06-18 07:24:23 +02:00
96e402e4b8
from espie (maintainer)
26 lines
539 B
Makefile
26 lines
539 B
Makefile
COMMENT = run command with randomized parameters
|
|
|
|
CATEGORIES = sysutils
|
|
MAINTAINER = Marc Espie <espie@openbsd.org>
|
|
|
|
DIST_TUPLE = github marcespie random_run 2.18 .
|
|
|
|
COMPILER = base-clang ports-gcc
|
|
|
|
# BSD licence
|
|
PERMIT_PACKAGE= Yes
|
|
NO_TEST = Yes
|
|
|
|
# uses pledge()
|
|
WANTLIB = ${COMPILER_LIBCXX} c m
|
|
|
|
MAKE_FLAGS = OPTIMIZE="${CXXFLAGS}" LDFLAGS="${DEBUG} ${LDFLAGS}"
|
|
|
|
DEBUG_PACKAGES = ${BUILD_PACKAGES}
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKBUILD}/rr ${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/rr.1 ${PREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|