mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-16 03:24:07 +00:00
551afb9087
Approved by: jrm (mentor) Differential Revision: https://reviews.freebsd.org/D15171
29 lines
773 B
Makefile
29 lines
773 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= pbcopper
|
|
DISTVERSION= g20180413
|
|
CATEGORIES= biology
|
|
|
|
MAINTAINER= jwb@FreeBSD.org
|
|
COMMENT= Core C++ library for Pacific Biosciences tools
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
|
|
|
|
LIB_DEPENDS= libboost_regex.so:devel/boost-libs
|
|
|
|
USES= cmake
|
|
# Although there are a couple releases, git describe --tags does not work
|
|
# so we cannot use the usual USE_GITHUB tools here.
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= PacificBiosciences
|
|
GH_TAGNAME= 17ef457a0dbe1894a8d17af7ddba01a6261bf117
|
|
|
|
do-install:
|
|
${INSTALL_DATA} ${BUILD_WRKSRC}/lib/*.a ${STAGEDIR}${PREFIX}/lib
|
|
cd ${WRKSRC}/include && ${COPYTREE_SHARE} . ${STAGEDIR}${PREFIX}/include
|
|
${MV} ${STAGEDIR}${PREFIX}/include/meson.build \
|
|
${STAGEDIR}${PREFIX}/include/pbcopper
|
|
|
|
.include <bsd.port.mk>
|