blob: f3b305fc5e7eb2b7f8470d9ababf750b11fa393a (
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
30
31
32
33
34
35
|
# $NetBSD: Makefile,v 1.1.1.1 2007/06/15 21:49:07 dmcmahill Exp $
DISTNAME= cooking
PKGNAME= tex-${DISTNAME}-0.9b
CATEGORIES= print
MASTER_SITES= ${MASTER_SITE_TEX_CTAN:=macros/latex/contrib/}
EXTRACT_SUFX= .zip
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://tug.ctan.org/tex-archive/macros/latex/contrib/cooking/
COMMENT= Typeset recipes
DIST_SUBDIR= ${PKGNAME_NOREV}
USE_DIRS+= texmf-1.0
.include "../../print/teTeX/module.mk"
do-build:
cd ${WRKSRC} && latex cooking.ins
cd ${WRKSRC} && latex cooking.dtx
cd ${WRKSRC} && latex cooking.dtx
cd ${WRKSRC} && latex cooking.dtx
cd ${WRKSRC} && latex kraut.tex
do-install:
${INSTALL_DATA_DIR} ${PKG_LOCALTEXMFPREFIX}/doc/latex/cooking
.for __tmp__ in README cooking.dvi kraut.tex kraut.dvi
${INSTALL_DATA} ${WRKSRC}/${__tmp__} ${PKG_LOCALTEXMFPREFIX}/doc/latex/cooking
.endfor
${INSTALL_DATA_DIR} ${PKG_LOCALTEXMFPREFIX}/tex/latex/cooking
${INSTALL_DATA} ${WRKSRC}/cooking.sty \
${PKG_LOCALTEXMFPREFIX}/tex/latex/cooking
.include "../../mk/bsd.pkg.mk"
|