3d8ef5a52d
many packages used to use ${PAX}. Use the common way of directly calling pax, it is created as tool after all.
32 lines
921 B
Makefile
32 lines
921 B
Makefile
# $NetBSD: Makefile,v 1.11 2008/05/26 02:13:16 joerg Exp $
|
|
#
|
|
|
|
DISTNAME= ProFitV2.2
|
|
PKGNAME= profit-2.2
|
|
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
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
USE_TOOLS+= pax
|
|
|
|
BUILD_TARGET= profit
|
|
BUILD_DIRS= src
|
|
INSTALLATION_DIRS= bin
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/src/profit ${DESTDIR}${PREFIX}/bin
|
|
${INSTALL_DATA_DIR} ${DESTDIR}${PREFIX}/share/doc/profit
|
|
.for sufx in dvi ps tex
|
|
${INSTALL_DATA} ${WRKSRC}/doc/ProFit.${sufx} \
|
|
${DESTDIR}${PREFIX}/share/doc/profit
|
|
.endfor
|
|
${INSTALL_DATA_DIR} ${DESTDIR}${PREFIX}/share/doc/html/profit
|
|
cd ${WRKSRC}/doc/ProFit/ && \
|
|
pax -rw . ${DESTDIR}${PREFIX}/share/doc/html/profit/
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|