wok view qemacs/receipt @ rev 14957

Up: enlightenment-backgrounds (0.17.4)
author Dominique Corbex <domcox@slitaz.org>
date Thu Aug 08 19:20:58 2013 +0200 (2013-08-08)
parents 8af11d536290
children 76b72f1ad63c
line source
1 # SliTaz package receipt.
3 PACKAGE="qemacs"
4 VERSION="0.3.2"
5 CATEGORY="development"
6 SHORT_DESC="Light emacs clone."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="LGPL"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://bellard.org/$PACKAGE/"
11 DEPENDS=""
12 BUILD_DEPENDS="gcc3"
13 WGET_URL="${WEB_SITE}$TARBALL"
14 TAGS="editor"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure --prefix=/usr --disable-x11 $CONFIGURE_ARGS && make CC=gcc-3
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/bin $fs/usr/share/qe
27 install -m 755 $src/qe $fs/usr/bin/qemacs
28 ln -s qemacs $fs/usr/bin/qe
29 install -m 755 -s $src/html2png $fs/usr/bin
30 install $src/kmaps $src/ligatures $fs/usr/share/qe
31 }