mirror of
https://git.freebsd.org/ports.git
synced 2025-05-22 03:45:17 -04:00
strings, that were passed through rather than escaping anything. Approved by: portmgr (not really, but it touches unstaged ports)
26 lines
664 B
Makefile
26 lines
664 B
Makefile
# Created by: Jui-Nan Lin <jnlin@csie.nctu.edu.tw>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= phpserialize
|
|
PORTVERSION= 0.4
|
|
PORTREVISION= 2
|
|
CATEGORIES= devel lang www python
|
|
MASTER_SITES= http://www.hurring.com/scott/code/python/serialize/
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
DISTNAME= PHPSerialize_v${PORTVERSION}
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= jnlin@csie.nctu.edu.tw
|
|
COMMENT= Python implementation of PHP's native serialize() and unserialize()
|
|
|
|
WRKSRC= ${WRKDIR}/v${PORTVERSION}
|
|
|
|
USE_PYTHON= yes
|
|
USE_PYDISTUTILS= yes
|
|
PYDISTUTILS_AUTOPLIST= yes
|
|
|
|
post-extract:
|
|
${SED} -e 's|%%PORTVERSION%%|${PORTVERSION}|g' ${FILESDIR}/setup.py \
|
|
> ${WRKSRC}/setup.py
|
|
|
|
.include <bsd.port.mk>
|