wok view emacs-help/receipt @ rev 4103

Remove zaptel (now dahdi)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Sep 19 17:16:53 2009 +0200 (2009-09-19)
parents
children a878a8e4e836
line source
1 # SliTaz package receipt.
3 PACKAGE="emacs-help"
4 VERSION="23.1"
5 CATEGORY="development"
6 SHORT_DESC="The GNU Emacs editor - Help files"
7 MAINTAINER="domcox@slitaz.org"
8 DEPENDS="emacs"
9 BUILD_DEPENDS=
10 WEB_SITE="http://www.gnu.org/software/emacs/"
11 WANTED="emacs"
13 # Rules to gen a SliTaz package suitable for Tazpkg.
14 genpkg_rules()
15 {
16 # Help files
17 echo -n "Copying info files"
18 mkdir -p $fs/usr/share/emacs/info && \
19 cp -a $_pkg/usr/share/emacs/info/em* $fs/usr/share/emacs/info && \
20 cp -a $_pkg/usr/share/emacs/info/info $fs/usr/share/emacs/info
21 status
22 # Tutorial
23 echo -n "Copying tutorial files"
24 mkdir -p $fs/usr/share/emacs/$VERSION/etc && \
25 cp -a $_pkg/usr/share/emacs/$VERSION/etc/tutorials $fs/usr/share/emacs/$VERSION/etc
26 status
27 # Doc
28 echo -n "Copying doc files"
29 DOC_FILES=" COOKIES DOC-$VERSION.1 DEVEL.HUMOR ERC-NEWS ETAGS.EBNF GNUS-NEWS HELLO \
30 INTERVIEW JOKES LINUX-GNU MH-E-NEWS MORE.STUFF MOTIVATION NEWS NEWS.1-17 \
31 NEWS.19 NEWS.19 NEWS.20 NEWS.21 NEWS.22 NXML-NEWS PROBLEMS TERMS THE-GNU-PROJECT \
32 WHY-FREE compilation.txt edt-user.doc enriched.doc gnus-tut.txt grep.txt"
33 for file in $DOC_FILES; do
34 cp -a $_pkg/usr/share/emacs/$VERSION/etc/$file $fs/usr/share/emacs/$VERSION/etc
35 done
36 status
37 }