wok annotate e3/receipt @ rev 15781

linux: remove kmod dep
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Jan 13 00:02:35 2014 +0100 (2014-01-13)
parents e9126ce12858
children 4bc239bf6b69
rev   line source
devl547@9391 1 # SliTaz package receipt.
devl547@9391 2
devl547@9391 3 PACKAGE="e3"
devl547@9391 4 VERSION="2.8"
devl547@9391 5 CATEGORY="utilities"
al@13134 6 SHORT_DESC="e3 is a full featured text editor written in NASM assembler."
devl547@9391 7 MAINTAINER="devl547@gmail.com"
pascal@15202 8 LICENSE="GPL2"
devl547@9391 9 TARBALL="$PACKAGE-$VERSION.tgz"
slaxemulator@9436 10 WEB_SITE="http://sites.google.com/site/e3editor"
pascal@13135 11 WGET_URL="https://sites.google.com/site/e3editor/Home/$TARBALL?attredirects=0"
devl547@9391 12 TAGS="text-editor"
devl547@9391 13
pascal@15202 14 DEPENDS=""
pascal@15202 15 BUILD_DEPENDS="make nasm wget"
pascal@15202 16
devl547@9391 17 # Rules to configure and make the package.
devl547@9391 18 compile_rules()
devl547@9391 19 {
devl547@9391 20 cd $src
devl547@9391 21 sed -i -e 's/-D$(EXMODE)//' Makefile &&
devl547@9391 22 sed -i -e 's#/man/man#/share/man/man#' Makefile
devl547@9391 23 make &&
pascal@15202 24 make PREFIX=$DESTDIR install
devl547@9391 25 }
devl547@9391 26
devl547@9391 27 # Rules to gen a SliTaz package suitable for Tazpkg.
devl547@9391 28 genpkg_rules()
devl547@9391 29 {
devl547@9391 30 mkdir -p $fs/usr/
devl547@9391 31 cp -R $WOK/$PACKAGE/install/* $fs/usr/
devl547@9391 32 }