wok view emacs-pkg-lua-mode/receipt @ rev 21134

Update rawstudio for exiv2
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Mar 21 14:53:30 2019 +0100 (2019-03-21)
parents 223b265f40fd
children 3e80b32cca09
line source
1 # SliTaz package receipt.
3 PACKAGE="emacs-pkg-lua-mode"
4 VERSION="20111107"
5 CATEGORY="development"
6 SHORT_DESC="An Emacs major mode for editing Lua code."
7 MAINTAINER="domcox@slitaz.org"
8 LICENSE="GPL3"
9 BUILD_DEPENDS="emacs"
10 WEB_SITE="http://immerrr.github.com/lua-mode/"
11 TAGS="emacs lua"
13 DEPENDS="emacs"
15 # Rules to gen a SliTaz package suitable for Tazpkg.
16 genpkg_rules()
17 {
18 echo -n "Installing start file"
19 mkdir -p $fs/usr/share/emacs/site-lisp/site-start.d && \
20 cp -a $stuff/90-lua-mode.el $fs/usr/share/emacs/site-lisp/site-start.d
21 status
23 echo -n "Installing lua-mode"
24 mkdir -p $fs/usr/share/emacs/site-lisp/lua-mode && \
25 cp -a $stuff/lua-mode.el $fs/usr/share/emacs/site-lisp/lua-mode
26 status
28 # byte-compile files, remove src
29 for file in $fs/usr/share/emacs/site-lisp/lua-mode/*.el ; do
30 echo -n "Byte-compiling $(basename file)"
31 emacs -batch -f batch-byte-compile $file 2> /dev/null; err=$?
32 status
33 [ "$err" = "0" ] && rm -f $file
34 done
35 true
36 }
38 post_install()
39 {
40 chroot "$1/" tazpkg reconfigure emacs
41 }
43 post_remove()
44 {
45 chroot "$1/" tazpkg reconfigure emacs
46 }