if a port needs 2.x then set MODPY_VERSION=${MODPY_DEFAULT_VERSION_2}. This commit doesn't change any versions currently used; it may be that some ports have MODPY_DEFAULT_VERSION_2 but don't require it, those should be cleaned up in the course of updating ports where possible. Python module ports providing py3-* packages should still use FLAVOR=python3 so that we don't have a mixture of dependencies some using ${MODPY_FLAVOR} and others not.
31 lines
660 B
Makefile
31 lines
660 B
Makefile
# $OpenBSD: Makefile,v 1.14 2021/02/23 19:39:09 sthen Exp $
|
|
|
|
COMMENT= creates playlists from directory trees
|
|
|
|
MODPY_EGG_VERSION= 0.4.5
|
|
DISTNAME= mkplaylist-${MODPY_EGG_VERSION}
|
|
REVISION = 5
|
|
CATEGORIES= audio
|
|
HOMEPAGE= http://bj.spline.de/software.html
|
|
|
|
# GPL
|
|
PERMIT_PACKAGE= Yes
|
|
|
|
MASTER_SITES= http://bj.spline.de/download/mkplaylist/
|
|
|
|
MODULES= lang/python
|
|
MODPY_VERSION = ${MODPY_DEFAULT_VERSION_2}
|
|
PKG_ARCH = *
|
|
|
|
# Author didn't write tests
|
|
NO_TEST= Yes
|
|
|
|
pre-patch:
|
|
@cp ${FILESDIR}/setup.py ${WRKSRC}/.
|
|
@mv ${WRKSRC}/mkplaylist.py ${WRKSRC}/mkplaylist
|
|
|
|
post-install:
|
|
${INSTALL_MAN} ${FILESDIR}/mkplaylist.1 ${PREFIX}/man/man1/
|
|
|
|
.include <bsd.port.mk>
|