b1ac371053
brook at biology dot nmsu dot edu and his team at NMSU. ProFit (pronounced Pro-Fit, not profit!) is designed to be the ultimate program for performing least squares fits of two protein structures. It performs a very simple and basic function, but allows as much flexibility as possible in performing this procedure. Thus one can specify subsets of atoms to be considered, specify zones to be fitted by number, sequence, or by sequence alignment.
28 lines
871 B
Makefile
28 lines
871 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2003/09/27 23:18:26 jschauma Exp $
|
|
#
|
|
|
|
DISTNAME= profit
|
|
PKGNAME= profit-2.2
|
|
WRKSRC= ${WRKDIR}/ProFitV2.2/src
|
|
CATEGORIES= biology
|
|
MASTER_SITES= http://www.rubic.rdg.ac.uk/~andrew/bioinf.org/software/profit/235216/
|
|
|
|
MAINTAINER= hdp@cs.nmsu.edu
|
|
HOMEPAGE= http://www.rubic.rdg.ac.uk/~andrew/bioinf.org/software/profit/index.html
|
|
COMMENT= Performs least squares fits of two protein structures
|
|
|
|
ALL_TARGET= ${DISTNAME}
|
|
USE_BUILDLINK2= YES
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/profit ${PREFIX}/bin
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/profit
|
|
.for sufx in dvi ps tex
|
|
${INSTALL_DATA} ${WRKSRC}/../doc/ProFit.${sufx} \
|
|
${PREFIX}/share/doc/profit
|
|
.endfor
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/html/profit
|
|
cd ${WRKSRC}/../doc/ProFit/ && \
|
|
${PAX} -rw . ${PREFIX}/share/doc/html/profit/
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|