28 lines
588 B
Makefile
28 lines
588 B
Makefile
# $OpenBSD: Makefile,v 1.3 2014/04/13 07:06:26 benoit Exp $
|
|
|
|
COMMENT = Python module to read and work with PE files
|
|
|
|
MODPY_EGG_VERSION = 1.2.10-139
|
|
DISTNAME = pefile-${MODPY_EGG_VERSION}
|
|
PKGNAME = py-pefile-${MODPY_EGG_VERSION:S/-/./}
|
|
|
|
CATEGORIES = security
|
|
|
|
HOMEPAGE = https://code.google.com/p/pefile/
|
|
|
|
MAINTAINER = Remi Pointel <rpointel@openbsd.org>
|
|
|
|
# MIT
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
MASTER_SITES = https://pefile.googlecode.com/files/
|
|
|
|
MODULES = lang/python
|
|
MODPY_SETUPTOOLS = Yes
|
|
|
|
NO_TEST = Yes
|
|
|
|
.include <bsd.port.mk>
|