wok annotate emacs-lisp-sources/receipt @ rev 25037

Up glza (0.11.4)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 21 21:38:29 2022 +0000 (24 months ago)
parents bb2badbb79d8
children
rev   line source
domcox@3938 1 # SliTaz package receipt.
domcox@3938 2
domcox@3938 3 PACKAGE="emacs-lisp-sources"
Hans-G?nter@22692 4 VERSION="26.3"
domcox@3938 5 CATEGORY="development"
Hans-G?nter@22692 6 SHORT_DESC="The GNU Emacs editor - Lisp source files."
domcox@3938 7 MAINTAINER="domcox@slitaz.org"
pascal@15202 8 LICENSE="GPL3"
Hans-G?nter@22692 9 WEB_SITE="https://www.gnu.org/software/emacs/"
domcox@3938 10
pascal@15202 11 DEPENDS="emacs"
Hans-G?nter@22692 12 WANTED="emacs"
pascal@15202 13
domcox@3938 14 # Rules to gen a SliTaz package suitable for Tazpkg.
domcox@3938 15 genpkg_rules()
domcox@3938 16 {
domcox@3938 17 # lisp files
Hans-G?nter@22692 18 LISP_DIR="lisp lisp/calc lisp/calendar lisp/cedet lisp/cedet/ede
Hans-G?nter@22692 19 lisp/cedet/semantic lisp/cedet/semantic/analyze
Hans-G?nter@22692 20 lisp/cedet/semantic/bovine lisp/cedet/semantic/decorate
Hans-G?nter@22692 21 lisp/cedet/semantic/symref lisp/cedet/srecode
Hans-G?nter@22692 22 lisp/cedet/semantic/wisent lisp/emacs-lisp lisp/emulation
Hans-G?nter@22692 23 lisp/erc lisp/eshell lisp/gnus lisp/international
pascal@22694 24 lisp/language lisp/leim/ja-dic lisp/leim/quail
Hans-G?nter@22692 25 lisp/mail lisp/mh-e lisp/net lisp/nxml lisp/obsolete lisp/org
Hans-G?nter@22692 26 lisp/play lisp/progmodes lisp/textmodes lisp/url lisp/vc"
domcox@5578 27
Hans-G?nter@22692 28 for dir in $LISP_DIR
Hans-G?nter@22692 29 do
domcox@3938 30 echo -n "Copying $dir sources"
Hans-G?nter@22692 31 mkdir -p $fs/usr/share/$WANTED/$VERSION/$dir &&
pascal@15603 32 cp -a $install/usr/share/$WANTED/$VERSION/$dir/*.el.gz \
domcox@14084 33 $fs/usr/share/$WANTED/$VERSION/$dir
domcox@3938 34 status
Hans-G?nter@22692 35 done
Hans-G?nter@22692 36
Hans-G?nter@22692 37 # Use linux terminal only
domcox@3938 38 LINUX_TERM="rxvt.el.gz tty-colors.el.gz vt100.el.gz xterm.el.gz"
domcox@3938 39 echo -n "Copying lisp/term sources"
Hans-G?nter@22692 40 mkdir -p $fs/usr/share/$WANTED/$VERSION/lisp/term &&
Hans-G?nter@22692 41 for file in $LINUX_TERM
Hans-G?nter@22692 42 do
pascal@15603 43 cp -a $install/usr/share/$WANTED/$VERSION/lisp/term/$file \
domcox@14084 44 $fs/usr/share/$WANTED/$VERSION/lisp/term
Hans-G?nter@22692 45 done
domcox@3938 46 status
Hans-G?nter@22692 47
domcox@3938 48 # leim files
Hans-G?nter@22692 49 # LEIM_FILES="leim/ja-dic leim/quail"
Hans-G?nter@22692 50 # for dir in $LEIM_FILES; do
Hans-G?nter@22692 51 # echo -n "Copying $dir sources"
Hans-G?nter@22692 52 # mkdir -p $fs/usr/share/$WANTED/$VERSION/$dir && \
Hans-G?nter@22692 53 # cp -a $install/usr/share/$WANTED/$VERSION/$dir/*.el.gz \
Hans-G?nter@22692 54 # $fs/usr/share/$WANTED/$VERSION/$dir && \
Hans-G?nter@22692 55 # status
Hans-G?nter@22692 56 # done
Hans-G?nter@22692 57
domcox@14084 58 # refcards
domcox@14084 59 echo -n "Copying refcards sources"
domcox@14084 60 mkdir -p $fs/usr/share/$WANTED/$VERSION/etc/refcards
pascal@15603 61 cp -a $install/usr/share/$WANTED/$VERSION/etc/refcards/*tex \
Hans-G?nter@22692 62 $fs/usr/share/$WANTED/$VERSION/etc/refcards
domcox@14084 63 status
Hans-G?nter@22692 64
Hans-G?nter@22692 65 # Documentation
Hans-G?nter@22692 66 echo -n "Copying documentation files"
Hans-G?nter@22692 67 DOC_FILES="DEBUG MACHINES TODO"
Hans-G?nter@22692 68 for file in $DOC_FILES
Hans-G?nter@22692 69 do
pascal@15603 70 cp -a $install/usr/share/emacs/$VERSION/etc/$file \
domcox@14084 71 $fs/usr/share/emacs/$VERSION/etc
Hans-G?nter@22692 72 done
domcox@3938 73 status
domcox@3938 74 }