wok view e3/receipt @ rev 9394

Up: slitaz-boot-scripts 4.1.1
author Antoine Bodin <gokhlayeh@slitaz.org>
date Sat Mar 26 19:33:17 2011 +0100 (2011-03-26)
parents
children 45e7aae37df2
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/e3-2.8.tgz"
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 }