OSSP val is a flexible name to value mapping library for C variables. It is a companion library to OSSP var. It allows one to access C variables through name strings, although the C language does neither provide such a dedicated facility nor an evaluation construct (which could be used to implement such a facility easily). In general, this is used for accessing C variables without having to know the actual symbol/address/reference. The typical use cases are in combination with flexible configuration parsing and supporting loosly-coupled DSO-based module architectures.
20 lines
487 B
Makefile
20 lines
487 B
Makefile
# $NetBSD: Makefile,v 1.1 2013/08/22 11:14:08 obache Exp $
|
|
|
|
DISTNAME= val-0.9.4
|
|
PKGNAME= ossp-${DISTNAME}
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ftp://ftp.ossp.org/pkg/lib/val/
|
|
|
|
MAINTAINER= obache@users.sourceforge.net
|
|
HOMEPAGE= http://www.ossp.org/pkg/lib/val/
|
|
COMMENT= OSSP val - String Manipulations
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_LIBTOOL= yes
|
|
|
|
CONFIGURE_ARGS+= --with-ex=${BUILDLINK_PREFIX.ossp-ex}
|
|
|
|
TEST_TARGET= check
|
|
|
|
.include "../../wip/ossp-ex/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|