wok rev 9391

Add: e3 (2.8)
author Alexander Medvedev <devl547@gmail.com>
date Sat Mar 26 14:24:54 2011 +0000 (2011-03-26)
parents 269b83630f57
children 8251ee2d69a4
files e3/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/e3/receipt	Sat Mar 26 14:24:54 2011 +0000
     1.3 @@ -0,0 +1,31 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="e3"
     1.7 +VERSION="2.8"
     1.8 +CATEGORY="utilities"
     1.9 +SHORT_DESC="e3 is a full featured text editor written in NASM 
    1.10 +assembler."
    1.11 +MAINTAINER="devl547@gmail.com"
    1.12 +DEPENDS=""
    1.13 +BUILD_DEPENDS="make nasm"
    1.14 +TARBALL="$PACKAGE-$VERSION.tgz"
    1.15 +WEB_SITE="http://sites.google.com/site/e3editor/"
    1.16 +WGET_URL="$WEB_SITE/Home/e3-2.8.tgz"
    1.17 +TAGS="text-editor"
    1.18 +
    1.19 +# Rules to configure and make the package.
    1.20 +compile_rules()
    1.21 +{
    1.22 +    cd $src
    1.23 +    sed -i -e 's/-D$(EXMODE)//' Makefile &&
    1.24 +    sed -i -e 's#/man/man#/share/man/man#' Makefile
    1.25 +    make &&
    1.26 +    make PREFIX=$PWD/_pkg install
    1.27 +}
    1.28 +
    1.29 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.30 +genpkg_rules()
    1.31 +{
    1.32 +	mkdir -p $fs/usr/
    1.33 +	cp -R $WOK/$PACKAGE/install/* $fs/usr/
    1.34 +}