wok-undigest annotate qemacs/receipt @ rev 801

Move to wok: i3
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Aug 14 13:40:21 2012 +0200 (2012-08-14)
parents 110be00f90dd
children
rev   line source
pascal@731 1 # SliTaz package receipt.
pascal@731 2
pascal@731 3 PACKAGE="qemacs"
pascal@731 4 VERSION="0.3.2"
pascal@731 5 CATEGORY="development"
pascal@731 6 SHORT_DESC="Light emacs clone."
pascal@731 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@731 8 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@731 9 WEB_SITE="http://bellard.org/$PACKAGE/"
pascal@731 10 DEPENDS=""
pascal@732 11 BUILD_DEPENDS="gcc3"
pascal@731 12 WGET_URL="${WEB_SITE}$TARBALL"
pascal@731 13 TAGS="editor"
pascal@731 14
pascal@731 15 # Rules to configure and make the package.
pascal@731 16 compile_rules()
pascal@731 17 {
pascal@731 18 cd $src
pascal@734 19 ./configure --prefix=/usr --disable-x11 $CONFIGURE_ARGS && make CC=gcc-3
pascal@731 20 }
pascal@731 21
pascal@731 22 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@731 23 genpkg_rules()
pascal@731 24 {
pascal@735 25 mkdir -p $fs/usr/bin $fs/usr/share/qe
pascal@735 26 install -m 755 $src/qe $fs/usr/bin/qemacs
pascal@735 27 ln -s qemacs $fs/usr/bin/qe
pascal@735 28 install -m 755 -s $src/html2png $fs/usr/bin
pascal@735 29 install $src/kmaps $src/ligatures $fs/usr/share/qe
pascal@731 30 }
pascal@731 31