mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
26 lines
551 B
Makefile
26 lines
551 B
Makefile
# New ports collection makefile for: Distutils
|
|
# Date created: 23 March 2000
|
|
# Whom: Thomas Gellekum <tg@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= distutils
|
|
PORTVERSION= 1.0
|
|
CATEGORIES= misc python
|
|
MASTER_SITES= http://www.python.org/sigs/distutils-sig/download/
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
DISTNAME= Distutils-${PORTVERSION}
|
|
|
|
MAINTAINER= tg@FreeBSD.org
|
|
|
|
USE_PYTHON= yes
|
|
|
|
do-build:
|
|
@(cd ${WRKSRC}; ${PYTHON_CMD} setup.py build)
|
|
|
|
do-install:
|
|
@(cd ${WRKSRC}; ${PYTHON_CMD} setup.py install)
|
|
|
|
.include <bsd.port.mk>
|