Lp_solve is freely available (under LGPL 2) software for solving linear, integer and mixed integer programs. In this implementation we supply a "wrapper" function in C and some R functions that solve general linear/integer problems, assignment problems, and transportation problems. This version calls lp_solve version 5.5.
16 lines
379 B
Makefile
16 lines
379 B
Makefile
# $NetBSD: Makefile,v 1.1 2021/01/01 10:31:34 mef Exp $
|
|
|
|
R_PKGNAME= lpSolve
|
|
R_PKGVER= 5.6.15
|
|
CATEGORIES= devel
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
COMMENT= Interface to 'Lp_solve' v. 5.5 to Solve Linear/Integer Programs
|
|
LICENSE= gnu-lgpl-v2
|
|
|
|
DEPENDS+= tex-ec-[0-9]*:../../fonts/tex-ec
|
|
|
|
USE_LANGUAGES= c
|
|
|
|
.include "../../math/R/Makefile.extension"
|
|
.include "../../mk/bsd.pkg.mk"
|