Changelog: https://github.com/kusumi/fileobj/blob/v0.8.7/CHANGES Fix warning from poudriere - add STRIP_CMD. PR: 287228
26 lines
615 B
Makefile
26 lines
615 B
Makefile
PORTNAME= fileobj
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 0.8.7
|
|
CATEGORIES= editors
|
|
|
|
MAINTAINER= tkusumi@netbsd.org
|
|
COMMENT= Portable hex editor with vi like interface
|
|
WWW= https://github.com/kusumi/fileobj
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
USES= python
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= kusumi
|
|
USE_PYTHON= autoplist concurrent distutils optsuffix
|
|
|
|
PLIST_FILES= share/man/man1/fileobj.1.gz
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/fileobj/_native.cpython-${PYTHON_SUFFIX}.so
|
|
${INSTALL_MAN} ${WRKSRC}/doc/fileobj.1 \
|
|
${STAGEDIR}${PREFIX}/share/man/man1
|
|
|
|
.include <bsd.port.mk>
|