blob: 3c733288bc1dec5e483b4ecfbb7a67a64abecea3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# $NetBSD: Makefile,v 1.3 2022/01/05 15:41:25 wiz Exp $
DISTNAME= PTable-0.9.2
PKGNAME= ${PYPKGPREFIX}-${DISTNAME:tl}
PKGREVISION= 2
CATEGORIES= textproc python
MASTER_SITES= ${MASTER_SITE_PYPI:=P/PTable/}
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= https://github.com/kxxoling/PTable
COMMENT= Simple Python library for easily displaying tabular data
LICENSE= modified-bsd
USE_LANGUAGES= # none
USE_PKG_RESOURCES= yes
post-install:
cd ${DESTDIR}${PREFIX}/bin && \
${MV} ptable ptable-${PYVERSSUFFIX} || ${TRUE}
.include "../../lang/python/egg.mk"
.include "../../mk/bsd.pkg.mk"
|