wok view qemacs/receipt @ rev 13847

frogatto: try to fix build (Boost 1.47 removed a deprecated function...) btw, we use boost 1.50
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Jan 09 01:13:47 2013 +0000 (2013-01-09)
parents
children a436a235f098
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 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://bellard.org/$PACKAGE/"
10 DEPENDS=""
11 BUILD_DEPENDS="gcc3"
12 WGET_URL="${WEB_SITE}$TARBALL"
13 TAGS="editor"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure --prefix=/usr --disable-x11 $CONFIGURE_ARGS && make CC=gcc-3
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/bin $fs/usr/share/qe
26 install -m 755 $src/qe $fs/usr/bin/qemacs
27 ln -s qemacs $fs/usr/bin/qe
28 install -m 755 -s $src/html2png $fs/usr/bin
29 install $src/kmaps $src/ligatures $fs/usr/share/qe
30 }