mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-11 07:22:22 +00:00
- New port: devel/containers
Containers backed on dlang by std.experimental.allocator WWW: https://github.com/economicmodeling/containers
This commit is contained in:
parent
d26f4911bc
commit
02d01d2457
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=446355
@ -331,6 +331,7 @@
|
||||
SUBDIR += configkit
|
||||
SUBDIR += cons
|
||||
SUBDIR += cons-test
|
||||
SUBDIR += containers
|
||||
SUBDIR += cook
|
||||
SUBDIR += courier-unicode
|
||||
SUBDIR += covtool
|
||||
|
33
devel/containers/Makefile
Normal file
33
devel/containers/Makefile
Normal file
@ -0,0 +1,33 @@
|
||||
# Created by: Alonso Cardenas Marquez <acm@FreeBSD.org>
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= containers
|
||||
PORTVERSION= 0.5.3
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= https://github.com/economicmodeling/containers/archive/
|
||||
DISTNAME= ${DISTVERSION:S/^/v/}
|
||||
DIST_SUBDIR= ${PORTNAME}
|
||||
|
||||
MAINTAINER= acm@FreeBSD.org
|
||||
COMMENT= Containers backed on dlang by std.experimental.allocator
|
||||
|
||||
LICENSE= BSL
|
||||
|
||||
BUILD_DEPENDS= ldmd2:lang/ldc \
|
||||
dub:devel/dub
|
||||
|
||||
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
|
||||
DUB_CMD= ${LOCALBASE}/bin/dub build --build=release
|
||||
D_INCLUDE_DIR= ${PREFIX}/include/d
|
||||
D_LIB_DIR= ${PREFIX}/lib/d
|
||||
|
||||
do-build:
|
||||
@cd ${WRKSRC} && ${DUB_CMD}
|
||||
|
||||
do-install:
|
||||
@${MKDIR} ${STAGEDIR}${D_INCLUDE_DIR}
|
||||
@${MKDIR} ${STAGEDIR}${D_LIB_DIR}
|
||||
${INSTALL_DATA} ${WRKSRC}/libemsi_containers.a ${STAGEDIR}${D_LIB_DIR}
|
||||
cd ${WRKSRC}/src && ${COPYTREE_SHARE} . ${STAGEDIR}${D_INCLUDE_DIR} "-name *\.d"
|
||||
|
||||
.include <bsd.port.mk>
|
3
devel/containers/distinfo
Normal file
3
devel/containers/distinfo
Normal file
@ -0,0 +1,3 @@
|
||||
TIMESTAMP = 1500622066
|
||||
SHA256 (containers/v0.5.3.tar.gz) = 6d0595a3bb55c1a8b1f9fe4ab0abd83844fac82080509236916a9dff1c869f10
|
||||
SIZE (containers/v0.5.3.tar.gz) = 44630
|
3
devel/containers/pkg-descr
Normal file
3
devel/containers/pkg-descr
Normal file
@ -0,0 +1,3 @@
|
||||
Containers backed on dlang by std.experimental.allocator
|
||||
|
||||
WWW: https://github.com/economicmodeling/containers
|
19
devel/containers/pkg-plist
Normal file
19
devel/containers/pkg-plist
Normal file
@ -0,0 +1,19 @@
|
||||
include/d/containers/cyclicbuffer.d
|
||||
include/d/containers/dynamicarray.d
|
||||
include/d/containers/hashmap.d
|
||||
include/d/containers/hashset.d
|
||||
include/d/containers/immutablehashset.d
|
||||
include/d/containers/internal/backwards.d
|
||||
include/d/containers/internal/element_type.d
|
||||
include/d/containers/internal/hash.d
|
||||
include/d/containers/internal/mixins.d
|
||||
include/d/containers/internal/node.d
|
||||
include/d/containers/internal/storage_type.d
|
||||
include/d/containers/openhashset.d
|
||||
include/d/containers/package.d
|
||||
include/d/containers/simdset.d
|
||||
include/d/containers/slist.d
|
||||
include/d/containers/treemap.d
|
||||
include/d/containers/ttree.d
|
||||
include/d/containers/unrolledlist.d
|
||||
lib/d/libemsi_containers.a
|
Loading…
Reference in New Issue
Block a user