pkgsrc/math/liblinear/Makefile
adam bf12b23211 Changes 2.11:
We have improved the trust-region update rule in the primal-based Newton method. It's significantly faster (e.g., twice faster or more) on some problems (see the technical report).
We now support scipy objects in the Python interface
2017-05-21 10:40:28 +00:00

28 lines
918 B
Makefile

# $NetBSD: Makefile,v 1.4 2017/05/21 10:40:28 adam Exp $
DISTNAME= liblinear-2.11
CATEGORIES= math
MASTER_SITES= http://www.csie.ntu.edu.tw/~cjlin/liblinear/
MAINTAINER= cheusov@NetBSD.org
HOMEPAGE= http://www.csie.ntu.edu.tw/~cjlin/liblinear/
COMMENT= Library for large linear classification
LICENSE= modified-bsd
USE_LANGUAGES= c c++
USE_LIBTOOL= yes
BUILD_TARGET= all lib
AUTO_MKDIRS= yes
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/predict ${DESTDIR}${PREFIX}/bin/liblinear-predict
${INSTALL_PROGRAM} ${WRKSRC}/train ${DESTDIR}${PREFIX}/bin/liblinear-train
${LIBTOOL} --mode=install ${INSTALL_LIB} ${WRKSRC}/liblinear.la ${DESTDIR}${PREFIX}/lib
${INSTALL_DATA} ${WRKSRC}/linear.h ${DESTDIR}${PREFIX}/include
${INSTALL_DATA} ${WRKSRC}/README \
${DESTDIR}${PREFIX}/share/doc/${PKGBASE}
${INSTALL_DATA} ${WRKSRC}/heart_scale \
${DESTDIR}${PREFIX}/share/examples/${PKGBASE}
.include "../../mk/bsd.pkg.mk"