wok diff emacs-help/receipt @ rev 4513
syslinux: add isohybrid (shell version)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Nov 26 16:44:48 2009 +0100 (2009-11-26) |
parents | |
children | a878a8e4e836 |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/emacs-help/receipt Thu Nov 26 16:44:48 2009 +0100 1.3 @@ -0,0 +1,38 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="emacs-help" 1.7 +VERSION="23.1" 1.8 +CATEGORY="development" 1.9 +SHORT_DESC="The GNU Emacs editor - Help files" 1.10 +MAINTAINER="domcox@slitaz.org" 1.11 +DEPENDS="emacs" 1.12 +BUILD_DEPENDS= 1.13 +WEB_SITE="http://www.gnu.org/software/emacs/" 1.14 +WANTED="emacs" 1.15 + 1.16 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.17 +genpkg_rules() 1.18 +{ 1.19 + # Help files 1.20 + echo -n "Copying info files" 1.21 + mkdir -p $fs/usr/share/emacs/info && \ 1.22 + cp -a $_pkg/usr/share/emacs/info/em* $fs/usr/share/emacs/info && \ 1.23 + cp -a $_pkg/usr/share/emacs/info/info $fs/usr/share/emacs/info 1.24 + status 1.25 + # Tutorial 1.26 + echo -n "Copying tutorial files" 1.27 + mkdir -p $fs/usr/share/emacs/$VERSION/etc && \ 1.28 + cp -a $_pkg/usr/share/emacs/$VERSION/etc/tutorials $fs/usr/share/emacs/$VERSION/etc 1.29 + status 1.30 + # Doc 1.31 + echo -n "Copying doc files" 1.32 + DOC_FILES=" COOKIES DOC-$VERSION.1 DEVEL.HUMOR ERC-NEWS ETAGS.EBNF GNUS-NEWS HELLO \ 1.33 + INTERVIEW JOKES LINUX-GNU MH-E-NEWS MORE.STUFF MOTIVATION NEWS NEWS.1-17 \ 1.34 + NEWS.19 NEWS.19 NEWS.20 NEWS.21 NEWS.22 NXML-NEWS PROBLEMS TERMS THE-GNU-PROJECT \ 1.35 + WHY-FREE compilation.txt edt-user.doc enriched.doc gnus-tut.txt grep.txt" 1.36 + for file in $DOC_FILES; do 1.37 + cp -a $_pkg/usr/share/emacs/$VERSION/etc/$file $fs/usr/share/emacs/$VERSION/etc 1.38 + done 1.39 + status 1.40 +} 1.41 +