3d8ef5a52d
many packages used to use ${PAX}. Use the common way of directly calling pax, it is created as tool after all.
29 lines
755 B
Makefile
29 lines
755 B
Makefile
# $NetBSD: Makefile,v 1.6 2008/05/26 02:13:20 joerg Exp $
|
|
|
|
DISTNAME= BlenderManual.html
|
|
PKGNAME= blender-doc-20030922
|
|
PKGREVISION= 1
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= http://download.blender.org/documentation/
|
|
|
|
MAINTAINER= jschauma@NetBSD.org
|
|
HOMEPAGE= http://download.blender.org/documentation/
|
|
COMMENT= Documentation for Blender
|
|
|
|
CONFLICTS= blender<=2.31
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
WRKSRC= ${WRKDIR}/doc
|
|
NO_CONFIGURE= yes
|
|
NO_BUILD= yes
|
|
USE_TOOLS+= pax
|
|
|
|
do-install:
|
|
${INSTALL_DATA_DIR} ${DESTDIR}${PREFIX}/share/doc/blender
|
|
cd ${WRKDIR}/html && pax -s,.*/CVS.*,, -s,.*/.xvpics.*,, \
|
|
-rw . ${DESTDIR}${PREFIX}/share/doc/blender
|
|
cd ${DESTDIR}${PREFIX}/share/doc/blender && \
|
|
${LN} -s book1.html index.html
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|