wok view e3/receipt @ rev 10981

Up; sudo to 1.8.2.
author Christopher Rogers <slaxemulator@gmail.com>
date Wed Oct 12 13:44:45 2011 +0000 (2011-10-12)
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 }