mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-24 09:25:01 +00:00
f2bbe3333a
PyTox provides a Pythonic binding, i.e Object-oriented instead of C style, raise exception instead of returning error code. WWW: https://github.com/TokTok/py-toxcore-c PR: 216869 Submitted by: yuri@rawbw.com Approved by: mat (mentor) Differential Revision: https://reviews.freebsd.org/D9476
31 lines
596 B
Makefile
31 lines
596 B
Makefile
# Created by: Yuri Victorovich
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= toxcore-c
|
|
PORTVERSION= 0.170206
|
|
CATEGORIES= net-im net-p2p python
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= yuri@rawbw.com
|
|
COMMENT= Python binding for Project-Tox
|
|
|
|
LICENSE= LGPL3
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE.md
|
|
|
|
LIB_DEPENDS= libtoxcore.so:net-im/tox \
|
|
libsodium.so:security/libsodium \
|
|
libvpx.so:multimedia/libvpx \
|
|
libopus.so:audio/opus
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= TokTok
|
|
GH_PROJECT= py-toxcore-c
|
|
GH_TAGNAME= ebced1f
|
|
|
|
USES= python
|
|
USE_PYTHON= distutils autoplist
|
|
|
|
CFLAGS+= -I${LOCALBASE}/include
|
|
|
|
.include <bsd.port.mk>
|