f7455240e3
PR: 225752 Submitted by: Yasuhiro KIMURA
27 lines
628 B
Makefile
27 lines
628 B
Makefile
# Created by: ijliao
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= mt
|
|
PORTVERSION= 1.0
|
|
PORTREVISION= 1
|
|
CATEGORIES= www python
|
|
MASTER_SITES= SF/py${PORTNAME}/py${PORTNAME}/PyMT-${PORTVERSION}
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
DISTNAME= PyMT-${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Python module which provides Movable Type XML-RPC connectivity
|
|
|
|
LICENSE= PSFL # says License: python
|
|
|
|
USES= python:2.7
|
|
NO_BUILD= yes
|
|
NO_ARCH= yes
|
|
|
|
PLIST_FILES= %%PYTHON_SITELIBDIR%%/PyMT.py
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/PyMT.py ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}
|
|
|
|
.include <bsd.port.mk>
|