uTox is the lightweight client with minimal dependencies, It not only looks pretty, it runs fast! uTox is available with full support for: * chat; * file transfers; * audio/video calling; * desktop sharing (both as video and inline screenshots); * group chats. From Leonid Bobrov who takes maintainership, ok bcallah@
39 lines
727 B
Makefile
Executable File
39 lines
727 B
Makefile
Executable File
# $OpenBSD: Makefile,v 1.1.1.1 2018/04/29 11:15:17 landry Exp $
|
|
|
|
COMMENT = lightweight Tox client
|
|
|
|
V = 0.17.0
|
|
|
|
DISTNAME = uTox-${V}-full
|
|
PKGNAME = utox-${V}
|
|
MASTER_SITES = https://github.com/uTox/uTox/releases/download/v${V}/
|
|
|
|
CATEGORIES = net
|
|
|
|
HOMEPAGE = https://utox.io
|
|
|
|
MAINTAINER = Leonid Bobrov <mazocomp@disroot.org>
|
|
|
|
# MIT
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
|
|
WANTLIB += ICE SM X11 Xext Xrender c fontconfig freetype m pthread
|
|
WANTLIB += openal opus sodium toxcore v4lconvert vpx
|
|
|
|
MODULES = devel/cmake
|
|
|
|
RUN_DEPENDS = devel/desktop-file-utils \
|
|
x11/gtk+3,-guic
|
|
|
|
LIB_DEPENDS += audio/openal \
|
|
multimedia/libv4l \
|
|
net/toxcore
|
|
|
|
COMPILER = base-clang ports-gcc
|
|
|
|
NO_TEST = yes
|
|
|
|
WRKDIST = ${WRKDIR}/uTox
|
|
|
|
.include <bsd.port.mk>
|