28 lines
588 B
Makefile
28 lines
588 B
Makefile
|
COMMENT = CPU, RAM memory, and load monitor for use with tmux(1)
|
||
|
|
||
|
GH_ACCOUNT = thewtex
|
||
|
GH_PROJECT = tmux-mem-cpu-load
|
||
|
GH_TAGNAME = v3.8.0
|
||
|
|
||
|
CATEGORIES = sysutils
|
||
|
|
||
|
MAINTAINER = Robert Nagy <robert@openbsd.org>
|
||
|
|
||
|
HOMEPAGE = https://github.com/thewtex/tmux-mem-cpu-load
|
||
|
|
||
|
# Apachev2
|
||
|
PERMIT_PACKAGE = Yes
|
||
|
|
||
|
MODULES = devel/cmake
|
||
|
|
||
|
COMPILER = base-clang ports-gcc base-gcc
|
||
|
|
||
|
WANTLIB += c m ${COMPILER_LIBCXX}
|
||
|
|
||
|
post-install:
|
||
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/tmux-mem-cpu-load/
|
||
|
${INSTALL_DATA} ${WRKSRC}/README.rst \
|
||
|
${PREFIX}/share/doc/tmux-mem-cpu-load/
|
||
|
|
||
|
.include <bsd.port.mk>
|