aa9e9e6459
mdds 0.5.3 * mixed_type_matrix * re-implemented the filled storage for better performance, with two separate implementations for zero and emtpy matrix types. The newer implementation should improve object creation time considerably.
35 lines
963 B
Makefile
35 lines
963 B
Makefile
# $NetBSD: Makefile,v 1.3 2011/08/06 10:53:30 wiz Exp $
|
|
#
|
|
|
|
DISTNAME= mdds_0.5.3
|
|
PKGNAME= ${DISTNAME:S/_/-/}
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://multidimalgorithm.googlecode.com/files/
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://code.google.com/p/multidimalgorithm/
|
|
COMMENT= Collection of multi-dimensional data structure and indexing algorithms
|
|
LICENSE= mit
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
USE_LANGUAGES= c++
|
|
GNU_CONFIGURE= yes
|
|
INSTALLATION_DIRS= include/mdds/hash_container
|
|
|
|
do-build:
|
|
|
|
do-install:
|
|
for i in ${WRKSRC}/include/mdds/*.*; do \
|
|
${INSTALL_DATA} $$i ${DESTDIR}${PREFIX}/include/mdds; \
|
|
done
|
|
for i in ${WRKSRC}/include/mdds/hash_container/*.*; do \
|
|
${INSTALL_DATA} $$i \
|
|
${DESTDIR}${PREFIX}/include/mdds/hash_container; \
|
|
done
|
|
|
|
BUILDLINK_DEPMETHOD.boost-headers?= build
|
|
.include "../../devel/boost-headers/buildlink3.mk"
|
|
.include "../../devel/boost-libs/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|