mirror of
https://github.com/openbsd/ports.git
synced 2026-06-18 07:24:23 +02:00
2929eba575
to set it after bsd.port.mk is pulled in
25 lines
530 B
Makefile
25 lines
530 B
Makefile
COMMENT = library to support cross-platform AES encryption
|
|
|
|
VERSION = 20251121
|
|
BASENAME = libcaes
|
|
DISTNAME = ${BASENAME}-alpha-${VERSION}
|
|
PKGNAME = ${DISTNAME:S/-alpha//}
|
|
|
|
SHARED_LIBS += caes 0.0 # 1.0
|
|
|
|
WANTLIB = ${MODPY_WANTLIB}
|
|
WANTLIB += crypto iconv intl m pthread ssl util
|
|
|
|
MODULES = lang/python
|
|
|
|
CONFIGURE_ARGS += --prefix='${PREFIX}' \
|
|
--mandir=${PREFIX}/man \
|
|
--enable-python \
|
|
--with-pythondir=${MODPY_SITEPKG} \
|
|
AWK=/usr/bin/awk \
|
|
MKDIR_P='/bin/mkdir -p'
|
|
|
|
NO_TEST = Yes
|
|
|
|
.include <bsd.port.mk>
|