Libcmt stands for composable memory transcations library. It implements a transactional model of concurrency using Glib,where deadlock is not possible (beaucouse there are not locks at all) and transactions are composable
29 lines
707 B
Makefile
29 lines
707 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2009/05/06 10:32:00 jihbed Exp $
|
|
#
|
|
|
|
DISTNAME= libcmt-0.1.0
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=libcmt/}
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= kamel.derouiche@gmail.com
|
|
HOMEPAGE= http://sourceforge.net/projects/libcmt/
|
|
COMMENT= Composable Memory Transactions Library for C
|
|
LICENSE= gnu-lgpl-v2.1
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= pkg-config
|
|
USE_LANGUAGES= c c++
|
|
|
|
PKGCONFIG_OVERRIDE+= libcmt-sharp.pc.in
|
|
PKGCONFIG_OVERRIDE+= libcmt.pc.in
|
|
|
|
CONFIGURE_ARGS+= --disable-csharp-binding\
|
|
--disable-checks \
|
|
--enable-save-signal-mask
|
|
|
|
.include "../../devel/glib2/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|