wok view qemacs/receipt @ rev 14717

libgdiplus: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jun 11 11:20:13 2013 +0200 (2013-06-11)
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 }