wok view e3/receipt @ rev 11765

up mtr (0.82) and added description
author Samuel Trassare <samuel_trassare@yahoo.com>
date Wed Feb 22 17:33:57 2012 -0800 (2012-02-22)
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 }