blob: 6e86ff0062f1087bfb0c2cf6e6c7abc78b69e2f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# $NetBSD: Makefile,v 1.13 2016/07/24 21:11:52 rillig Exp $
#
DISTNAME= ProFitV2.2
PKGNAME= profit-2.2
PKGREVISION= 1
CATEGORIES= biology
MASTER_SITES= http://acrmwww.biochem.ucl.ac.uk/software/profit/235216/
MAINTAINER= hdp@cs.nmsu.edu
HOMEPAGE= http://acrmwww.biochem.ucl.ac.uk/programs/profit/index.html
COMMENT= Performs least squares fits of two protein structures
USE_TOOLS+= pax
BUILD_TARGET= profit
BUILD_DIRS= src
AUTO_MKDIRS= yes
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/src/profit ${DESTDIR}${PREFIX}/bin
.for sufx in dvi ps tex
${INSTALL_DATA} ${WRKSRC}/doc/ProFit.${sufx} \
${DESTDIR}${PREFIX}/share/doc/profit
.endfor
cd ${WRKSRC}/doc/ProFit/ && \
pax -rw . ${DESTDIR}${PREFIX}/share/doc/profit/html/
.include "../../mk/bsd.pkg.mk"
|