aboutsummaryrefslogtreecommitdiffstats
path: root/science/mmtf-cpp/Makefile
blob: 40cdd5e2387bfbd8b1681fa5ad15bfcd2260ef2b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# $FreeBSD$

PORTNAME=   mmtf-cpp
DISTVERSIONPREFIX=  v
DISTVERSION=    1.0.0
PORTREVISION=   1
CATEGORIES= science biology

MAINTAINER= yuri@FreeBSD.org
COMMENT=    C++ MMTF format API, decoder and encoder, for molecular structures

LICENSE=    MIT
LICENSE_FILE=   ${WRKSRC}/LICENSE

RUN_DEPENDS=    ${LOCALBASE}/include/msgpack.hpp:devel/msgpack

USES=       cmake compiler:c++11-lang localbase:ldflags
USE_GITHUB= yes
GH_ACCOUNT= rcsb
GH_TUPLE=   rcsb:mmtf:8c88834:x/mmtf_spec

NO_BUILD=   yes
NO_ARCH=    yes

PLIST_FILES=    include/mmtf.hpp \
        include/mmtf/binary_decoder.hpp \
        include/mmtf/binary_encoder.hpp \
        include/mmtf/decoder.hpp \
        include/mmtf/encoder.hpp \
        include/mmtf/errors.hpp \
        include/mmtf/export_helpers.hpp \
        include/mmtf/map_decoder.hpp \
        include/mmtf/msgpack_decoder.hpp \
        include/mmtf/object_encoders.hpp \
        include/mmtf/structure_data.hpp

post-patch:
    @cd ${WRKDIR} && ${LN} -s ${WRKSRC}/mmtf_spec # needed for testing

do-install:
    cd ${WRKSRC} && ${COPYTREE_SHARE} include ${STAGEDIR}${PREFIX}

do-test:
    @cd ${BUILD_WRKSRC} && \
        ${SETENV} ${CONFIGURE_ENV} ${CMAKE_BIN} ${CMAKE_ARGS} -Dmmtf_build_local=ON -DBUILD_TESTS=ON ${CMAKE_SOURCE_PATH} && \
        ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} ${ALL_TARGET} && \
        ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} test

.include <bsd.port.mk>