wok view emacs-lisp-sources/receipt @ rev 7872

Up: fotoxx to 11.01.
author Christopher Rogers <slaxemulator@gmail.com>
date Sun Jan 02 19:59:01 2011 +0000 (2011-01-02)
parents 6aae08641f1e
children aeaa98a3fab5
line source
1 # SliTaz package receipt.
3 PACKAGE="emacs-lisp-sources"
4 VERSION="23.2"
5 CATEGORY="development"
6 SHORT_DESC="The GNU Emacs editor - Lisp source 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 # lisp files
17 LISP_DIR=" lisp lisp/calc lisp/calendar lisp/cedet lisp/cedet/ede lisp/cedet/semantic \
18 lisp/cedet/semantic/analyze lisp/cedet/semantic/bovine lisp/cedet/semantic/decorate \
19 lisp/cedet/semantic/symref lisp/cedet/semantic/wisent lisp/emacs-lisp lisp/emulation \
20 lisp/erc lisp/eshell lisp/gnus lisp/international lisp/language lisp/mail lisp/mh-e \
21 lisp/net lisp/nxml lisp/obsolete lisp/org lisp/play lisp/progmodes lisp/textmodes lisp/url"
23 for dir in $LISP_DIR; do
24 echo -n "Copying $dir sources"
25 mkdir -p $fs/usr/share/$WANTED/$VERSION/$dir && \
26 cp $_pkg/usr/share/$WANTED/$VERSION/$dir/*.el.gz $fs/usr/share/$WANTED/$VERSION/$dir
27 status
28 done
29 # Use linux term only
30 LINUX_TERM="rxvt.el.gz tty-colors.el.gz vt100.el.gz xterm.el.gz"
31 echo -n "Copying lisp/term sources"
32 mkdir -p $fs/usr/share/$WANTED/$VERSION/lisp/term && \
33 for file in $LINUX_TERM; do
34 cp -a $_pkg/usr/share/$WANTED/$VERSION/lisp/term/$file $fs/usr/share/$WANTED/$VERSION/lisp/term
35 done
36 status
37 # leim files
38 LEIM_FILES="leim/ja-dic leim/quail"
39 for dir in $LEIM_FILES; do
40 echo -n "Copying $dir sources"
41 mkdir -p $fs/usr/share/$WANTED/$VERSION/$dir && \
42 cp $_pkg/usr/share/$WANTED/$VERSION/$dir/*.el.gz $fs/usr/share/$WANTED/$VERSION/$dir && \
43 status
44 done
45 # Doc
46 echo -n "Copying doc files"
47 DOC_FILES="CONTRIBUTE DEBUG MACHINES MAILINGLISTS TODO"
48 for file in $DOC_FILES; do
49 cp -a $_pkg/usr/share/emacs/$VERSION/etc/$file $fs/usr/share/emacs/$VERSION/etc
50 done
51 status
52 }