wok view qemacs/receipt @ rev 15595

siproxd, smx: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Dec 03 21:46:10 2013 +0000 (2013-12-03)
parents 76b72f1ad63c
children 0bc9efb792e7
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="LGPL2.1"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://bellard.org/$PACKAGE/"
11 WGET_URL="${WEB_SITE}$TARBALL"
12 TAGS="editor"
14 DEPENDS=""
15 BUILD_DEPENDS="gcc3"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure --prefix=/usr --disable-x11 $CONFIGURE_ARGS &&
22 make CC=gcc-3 -j 1
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/bin $fs/usr/share/qe
29 install -m 755 $src/qe $fs/usr/bin/qemacs
30 ln -s qemacs $fs/usr/bin/qe
31 install -m 755 -s $src/html2png $fs/usr/bin
32 install $src/kmaps $src/ligatures $fs/usr/share/qe
33 }