wok-6.x diff qemacs/receipt @ rev 13781
Up libdrm (2.4.40)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Fri Jan 04 09:46:14 2013 +0100 (2013-01-04) |
parents | |
children | a436a235f098 |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/qemacs/receipt Fri Jan 04 09:46:14 2013 +0100 1.3 @@ -0,0 +1,31 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="qemacs" 1.7 +VERSION="0.3.2" 1.8 +CATEGORY="development" 1.9 +SHORT_DESC="Light emacs clone." 1.10 +MAINTAINER="pascal.bellard@slitaz.org" 1.11 +TARBALL="$PACKAGE-$VERSION.tar.gz" 1.12 +WEB_SITE="http://bellard.org/$PACKAGE/" 1.13 +DEPENDS="" 1.14 +BUILD_DEPENDS="gcc3" 1.15 +WGET_URL="${WEB_SITE}$TARBALL" 1.16 +TAGS="editor" 1.17 + 1.18 +# Rules to configure and make the package. 1.19 +compile_rules() 1.20 +{ 1.21 + cd $src 1.22 + ./configure --prefix=/usr --disable-x11 $CONFIGURE_ARGS && make CC=gcc-3 1.23 +} 1.24 + 1.25 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.26 +genpkg_rules() 1.27 +{ 1.28 + mkdir -p $fs/usr/bin $fs/usr/share/qe 1.29 + install -m 755 $src/qe $fs/usr/bin/qemacs 1.30 + ln -s qemacs $fs/usr/bin/qe 1.31 + install -m 755 -s $src/html2png $fs/usr/bin 1.32 + install $src/kmaps $src/ligatures $fs/usr/share/qe 1.33 +} 1.34 +