mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-02 01:20:54 +00:00
42542fb076
fully chrooted DESTDIR, which does not need such any more. Sponsored by: Google Summer of Code 2007 Approved by: portmgr (pav)
35 lines
773 B
Makefile
35 lines
773 B
Makefile
# New ports collection makefile for: pycount
|
|
# Date created: Feb. 10, 2007
|
|
# Whom: Li-Wen Hsu <lwhsu@lwhsu.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= pycount
|
|
PORTVERSION= 0.0.6
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= http://python.net/crew/gherman/playground/pycount/ \
|
|
http://www.cs.nctu.edu.tw/~lwhsu/ports/distfiles/
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
DISTNAME= ${PORTNAME}.py
|
|
EXTRACT_SUFX= #
|
|
DIST_SUBDIR= python
|
|
|
|
MAINTAINER= lwhsu@FreeBSD.org
|
|
COMMENT= A very initial effort to Python code metrics
|
|
|
|
USE_DOS2UNIX= yes
|
|
USE_PYTHON= yes
|
|
NO_BUILD= yes
|
|
|
|
PLIST_FILES= bin/${PORTNAME}
|
|
|
|
do-extract:
|
|
@${MKDIR} ${WRKDIR}
|
|
@${CP} ${DISTDIR}/${DIST_SUBDIR}/${DISTFILES} ${WRKDIR}
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKDIR}/${DISTFILES} ${PREFIX}/bin/${PORTNAME}
|
|
|
|
.include <bsd.port.mk>
|