wok annotate e3/receipt @ rev 13811
xterm: update bdeps
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sun Jan 06 10:23:03 2013 +0100 (2013-01-06) |
parents | 9584196b887d |
children | 223b265f40fd |
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" |
devl547@9391 | 8 DEPENDS="" |
pascal@13135 | 9 BUILD_DEPENDS="make nasm wget" |
devl547@9391 | 10 TARBALL="$PACKAGE-$VERSION.tgz" |
slaxemulator@9436 | 11 WEB_SITE="http://sites.google.com/site/e3editor" |
pascal@13135 | 12 WGET_URL="https://sites.google.com/site/e3editor/Home/$TARBALL?attredirects=0" |
devl547@9391 | 13 TAGS="text-editor" |
devl547@9391 | 14 |
devl547@9391 | 15 # Rules to configure and make the package. |
devl547@9391 | 16 compile_rules() |
devl547@9391 | 17 { |
devl547@9391 | 18 cd $src |
devl547@9391 | 19 sed -i -e 's/-D$(EXMODE)//' Makefile && |
devl547@9391 | 20 sed -i -e 's#/man/man#/share/man/man#' Makefile |
devl547@9391 | 21 make && |
devl547@9391 | 22 make PREFIX=$PWD/_pkg install |
devl547@9391 | 23 } |
devl547@9391 | 24 |
devl547@9391 | 25 # Rules to gen a SliTaz package suitable for Tazpkg. |
devl547@9391 | 26 genpkg_rules() |
devl547@9391 | 27 { |
devl547@9391 | 28 mkdir -p $fs/usr/ |
devl547@9391 | 29 cp -R $WOK/$PACKAGE/install/* $fs/usr/ |
devl547@9391 | 30 } |