mirror of
https://github.com/openbsd/ports.git
synced 2026-06-18 07:24:23 +02:00
be009bc895
As these ports use autoconf, they don't use MODPY_PYBUILD, and therefore a BDP is the right way. Pointed out by sthen
37 lines
751 B
Makefile
37 lines
751 B
Makefile
COMMENT = library to access to storage media devices
|
|
|
|
VERSION = 20200210
|
|
DISTNAME = libsmdev-alpha-${VERSION}
|
|
PKGNAME = ${DISTNAME:S/-alpha//}
|
|
REVISION = 5
|
|
|
|
SHARED_LIBS += smdev 0.0 # 1.0
|
|
|
|
CATEGORIES = sysutils security
|
|
|
|
HOMEPAGE = https://github.com/libyal/libsmdev/wiki
|
|
|
|
SITES = https://github.com/libyal/libsmdev/releases/download/${VERSION}/
|
|
|
|
MAINTAINER = Remi Pointel <rpointel@openbsd.org>
|
|
|
|
# LGPLv3+
|
|
PERMIT_PACKAGE = Yes
|
|
|
|
WANTLIB = ${MODPY_WANTLIB}
|
|
WANTLIB += c iconv intl m pthread util
|
|
|
|
BUILD_DEPENDS += devel/gettext,-tools \
|
|
devel/py-setuptools
|
|
|
|
CONFIGURE_STYLE = gnu
|
|
CONFIGURE_ARGS += --enable-python3
|
|
|
|
WRKDIST = ${WRKDIR}/${PKGNAME}
|
|
|
|
MODULES += lang/python
|
|
|
|
TEST_DEPENDS += shells/bash
|
|
|
|
.include <bsd.port.mk>
|