mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-29 10:18:30 +00:00
3f614ddda1
PR: 213004 Submitted by: maintainer
35 lines
832 B
Makefile
35 lines
832 B
Makefile
# Created by: Ilya A. Arkhipov <rum1cro@yandex.ru>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= pyscss
|
|
PORTVERSION= 1.3.5
|
|
DISTVERSIONPREFIX= v
|
|
CATEGORIES= textproc python
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= rum1cro@yandex.ru
|
|
COMMENT= Compiler for SCSS flavor of the Sass language
|
|
|
|
LICENSE= MIT
|
|
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six \
|
|
${PYTHON_PKGNAMEPREFIX}enum34>0:devel/py-enum34 \
|
|
${PYTHON_PKGNAMEPREFIX}pathlib>0:devel/py-pathlib
|
|
LIB_DEPENDS= libpcre.so:devel/pcre
|
|
TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= Kronuz
|
|
GH_PROJECT= pyScss
|
|
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
USES= python
|
|
USE_PYTHON= distutils autoplist
|
|
|
|
regression-test: build
|
|
@(cd ${TEST_WRKSRC} && ${SETENV} ${TEST_ENV} ${PYTHON_CMD} -m pytest)
|
|
|
|
.include <bsd.port.mk>
|