mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-12 03:00:28 +00:00
7df4d719ef
- Strip library
27 lines
561 B
Makefile
27 lines
561 B
Makefile
# Created by: Wen Heping <wenheping@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= pygts
|
|
PORTVERSION= 0.3.1
|
|
PORTREVISION= 5
|
|
CATEGORIES= graphics python
|
|
MASTER_SITES= SF
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Python binding for GNU Triangulated Surface(GTS) Library
|
|
|
|
LICENSE= GPLv2 # or later
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
BUILD_DEPENDS= ${PYNUMPY}
|
|
RUN_DEPENDS= ${PYNUMPY}
|
|
LIB_DEPENDS= libgts.so:${PORTSDIR}/graphics/gts
|
|
|
|
USE_PYTHON= distutils
|
|
USES= pkgconfig python
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/gts/_gts.so
|
|
|
|
.include <bsd.port.mk>
|