freebsd-ports/devel/py-uncompyle2/Makefile
Adam Weinberger 0f88ed614d Repair instances, almost all courtesy of bf ;-), of spaces
and/or tabs before the =. This made doing regular expressions
on the ports tree really difficult.

Approved by:	portmgr (not really, but touches unstaged ports)
2014-07-29 20:55:27 +00:00

27 lines
661 B
Makefile

# Created by: Mikhail Teterin <mi@aldan.algebra.com>
# $FreeBSD$
PORTNAME= uncompyle2
PORTVERSION= 1.1
CATEGORIES= devel
MASTER_SITES= https://github.com/Mysterie/${PORTNAME}/tarball/${HASH}/
PKGNAMEPREFIX= py-
DISTNAME= Mysterie-${PORTNAME}-${HASH}
MAINTAINER= mi@aldan.algebra.com
COMMENT= Decompiler for Python's .pyc and .pyo files
HASH= 3956a5a
USE_PYTHON= 2
USE_PYDISTUTILS=yes
REINPLACE_ARGS= -i ""
pre-patch:
# Removing blanks at EOL
${FIND} ${WRKSRC} -type f -print0 | \
${XARGS} -0 ${REINPLACE_CMD} -E 's/[[:blank:]]+$$//g'
post-install:
${INSTALL_SCRIPT} ${WRKSRC}/uncompyle2.py ${STAGEDIR}${PREFIX}/bin/uncompyle2
.include <bsd.port.mk>