wok-current annotate emacs-help/receipt @ rev 25727
Add miss stuff folder for libxml++, dbus-c++
author | Stanislas Leduc <shann@slitaz.org> |
---|---|
date | Tue Nov 05 13:46:37 2024 +0000 (4 weeks ago) |
parents | 051931e905b0 |
children |
rev | line source |
---|---|
domcox@3938 | 1 # SliTaz package receipt. |
domcox@3938 | 2 |
domcox@3938 | 3 PACKAGE="emacs-help" |
Hans-G?nter@22691 | 4 VERSION="26.3" |
domcox@3938 | 5 CATEGORY="development" |
Hans-G?nter@22691 | 6 SHORT_DESC="The GNU Emacs editor - Help files." |
domcox@3938 | 7 MAINTAINER="domcox@slitaz.org" |
pascal@15202 | 8 LICENSE="GPL3" |
Hans-G?nter@22691 | 9 WEB_SITE="https://www.gnu.org/software/emacs/" |
domcox@3938 | 10 |
pascal@15202 | 11 DEPENDS="emacs" |
Hans-G?nter@22691 | 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 # Help files |
domcox@3938 | 18 echo -n "Copying info files" |
Hans-G?nter@22691 | 19 mkdir -p $fs/usr/share/info && |
Hans-G?nter@22691 | 20 cp -a $install/usr/share/info/* $fs/usr/share/info && |
domcox@3938 | 21 status |
Hans-G?nter@22691 | 22 |
domcox@3938 | 23 # Tutorial |
domcox@3938 | 24 echo -n "Copying tutorial files" |
Hans-G?nter@22691 | 25 mkdir -p $fs/usr/share/emacs/$VERSION/etc && |
pascal@15603 | 26 cp -a $install/usr/share/emacs/$VERSION/etc/tutorials \ |
Hans-G?nter@22691 | 27 $fs/usr/share/emacs/$VERSION/etc |
domcox@14083 | 28 status |
Hans-G?nter@22691 | 29 |
domcox@14083 | 30 # refcards |
domcox@14083 | 31 echo -n "Copying refcards" |
Hans-G?nter@22691 | 32 mkdir -p $fs/usr/share/emacs/$VERSION/etc/refcards && |
pascal@15603 | 33 cp -a $install/usr/share/emacs/$VERSION/etc/refcards/*pdf \ |
Hans-G?nter@22691 | 34 $fs/usr/share/emacs/$VERSION/etc/refcards |
domcox@3938 | 35 status |
Hans-G?nter@22691 | 36 |
Hans-G?nter@22691 | 37 # Documentation |
Hans-G?nter@22691 | 38 echo -n "Copying documentation files" |
Hans-G?nter@22691 | 39 DOC_FILES="DOC DEVEL.HUMOR ERC-NEWS ETAGS.EBNF \ |
Hans-G?nter@22691 | 40 GNUS-NEWS HELLO JOKES LINUX-GNU MH-E-NEWS MORE.STUFF \ |
domcox@14083 | 41 NEWS.* NXML-NEWS ORG-NEWS PROBLEMS TERMS THE-GNU-PROJECT WHY-FREE \ |
domcox@14083 | 42 compilation.txt gnus-tut.txt grep.txt" |
Hans-G?nter@22691 | 43 for file in $DOC_FILES |
Hans-G?nter@22691 | 44 do |
pascal@15603 | 45 cp -a $install/usr/share/emacs/$VERSION/etc/$file \ |
Hans-G?nter@22691 | 46 $fs/usr/share/emacs/$VERSION/etc |
Hans-G?nter@22691 | 47 done |
domcox@3938 | 48 status |
domcox@3938 | 49 } |
domcox@3938 | 50 |