wok view e3/receipt @ rev 9503

lxpanel: move slitaz config to slitaz-configs repo (we use --profile at startup to use our settings)
author Christophe Lincoln <pankso@slitaz.org>
date Wed Apr 06 04:03:17 2011 +0200 (2011-04-06)
parents 2225ac6086d8
children 9584196b887d
line source
1 # SliTaz package receipt.
3 PACKAGE="e3"
4 VERSION="2.8"
5 CATEGORY="utilities"
6 SHORT_DESC="e3 is a full featured text editor written in NASM
7 assembler."
8 MAINTAINER="devl547@gmail.com"
9 DEPENDS=""
10 BUILD_DEPENDS="make nasm"
11 TARBALL="$PACKAGE-$VERSION.tgz"
12 WEB_SITE="http://sites.google.com/site/e3editor"
13 WGET_URL="$WEB_SITE/Home/$TARBALL"
14 TAGS="text-editor"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 sed -i -e 's/-D$(EXMODE)//' Makefile &&
21 sed -i -e 's#/man/man#/share/man/man#' Makefile
22 make &&
23 make PREFIX=$PWD/_pkg install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/
30 cp -R $WOK/$PACKAGE/install/* $fs/usr/
31 }