vex is amd64-only and there is no point in attempting to build packages only to have them fail when the RDEP on vex cannot be resolved (e.g. on i386 as reported by sthen). prompted by sthen@ ok kn@
28 lines
656 B
Makefile
28 lines
656 B
Makefile
# $OpenBSD: Makefile.inc,v 1.3 2019/09/30 08:24:44 jasper Exp $
|
|
|
|
# vex is amd64-only; sync with security/angrop
|
|
ONLY_FOR_ARCHS = amd64
|
|
|
|
MAINTAINER ?= Jasper Lievisse Adriaanse <jasper@openbsd.org>, \
|
|
Klemens Nanni <kn@openbsd.org>
|
|
|
|
CATEGORIES = devel security
|
|
|
|
# z3-solver: MIT
|
|
# vex: (L)GPL2
|
|
# rest: BSD
|
|
PERMIT_PACKAGE ?= Yes
|
|
|
|
.if defined(ANGR_PYTHON_MODULE)
|
|
HOMEPAGE ?= https://github.com/angr/${ANGR_PYTHON_MODULE}/
|
|
|
|
MODULES ?= lang/python
|
|
MODPY_PI ?= Yes
|
|
MODPY_SETUPTOOLS ?= Yes
|
|
MODPY_VERSION ?= ${MODPY_DEFAULT_VERSION_3}
|
|
|
|
MODPY_EGG_VERSION ?= 8.19.7.25
|
|
DISTNAME ?= ${ANGR_PYTHON_MODULE}-${MODPY_EGG_VERSION}
|
|
PKGNAME = py-${DISTNAME}
|
|
.endif
|