blob: 69814dd8f24c877b4cae8e40f9be7473af66c7c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# $NetBSD: Makefile,v 1.2 2009/02/11 00:39:10 gdt Exp $
.include "Makefile.common"
COMMENT= Fast Artificial Neural Network
PKG_DESTDIR_SUPPORT= user-destdir
USE_PKGLOCALEDIR= yes
USE_LIBTOOL= yes
USE_TOOLS+= pkg-config
GNU_CONFIGURE= yes
USE_LANGUAGES= c c++
PKGCONFIG_OVERRIDE+= fann.pc.in
post-install:
${INSTALL_DATA_DIR} ${DESTDIR}/${PREFIX}/share/doc/fann
(cd ${WRKSRC} && ${INSTALL_DATA} doc/* ${DESTDIR}/${PREFIX}/share/doc/fann)
.include "../../mk/bsd.pkg.mk"
|