mirror of
https://git.freebsd.org/ports.git
synced 2025-06-30 00:50:29 -04:00
28 lines
599 B
Makefile
28 lines
599 B
Makefile
# Created by: antoine@FreeBSD.org
|
|
|
|
PORTNAME= pyelftools
|
|
PORTVERSION= 0.27
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= antoine@FreeBSD.org
|
|
COMMENT= Library for analyzing ELF files and DWARF debugging information
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
NO_ARCH= yes
|
|
STRIP=
|
|
USES= python:3.6+
|
|
USE_PYTHON= distutils autoplist concurrent
|
|
|
|
PORTEXAMPLES= *
|
|
|
|
OPTIONS_DEFINE= EXAMPLES
|
|
|
|
do-install-EXAMPLES-on:
|
|
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
|
cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR}
|
|
|
|
.include <bsd.port.mk>
|