c4bf4df4e0
changes: -The prefix needed for parsing hex values is now "0x" and no longer "$" -The associativity of binary operators can now be changed. -The pow operator is now right associative. -Seperator can now be used outside of functions. +bugfixes
26 lines
613 B
Makefile
26 lines
613 B
Makefile
# $NetBSD: Makefile,v 1.4 2010/11/02 17:29:04 drochner Exp $
|
|
#
|
|
|
|
DISTNAME= muparser_v134
|
|
PKGNAME= muparser-134
|
|
CATEGORIES= math
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=muparser/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://muparser.sourceforge.net/
|
|
COMMENT= Parser for mathematical expressions
|
|
LICENSE= mit
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
MAKE_JOBS_SAFE= no
|
|
USE_LANGUAGES= c c++
|
|
GNU_CONFIGURE= yes
|
|
#USE_TOOLS+= pkg-config
|
|
|
|
PKGCONFIG_OVERRIDE+= build/autoconf/muparser.pc.in
|
|
|
|
do-test:
|
|
cd ${WRKSRC}/samples/example1 && echo quit | LD_LIBRARY_PATH=../../lib ./example1
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|