wok-next diff e3/receipt @ rev 21020
Cleaning is almost finished... I should proceed to upgrades.
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Fri Nov 02 14:15:08 2018 +0200 (2018-11-02) |
parents | 4bc239bf6b69 |
children | 420baedeb7cc |
line diff
1.1 --- a/e3/receipt Tue Mar 11 23:30:55 2014 +0100 1.2 +++ b/e3/receipt Fri Nov 02 14:15:08 2018 +0200 1.3 @@ -1,30 +1,29 @@ 1.4 -# SliTaz package receipt. 1.5 +# SliTaz package receipt v2. 1.6 1.7 PACKAGE="e3" 1.8 VERSION="2.8" 1.9 CATEGORY="utilities" 1.10 -SHORT_DESC="e3 is a full featured text editor written in NASM assembler." 1.11 +SHORT_DESC="Full featured text editor written in NASM assembler" 1.12 MAINTAINER="devl547@gmail.com" 1.13 LICENSE="GPL2" 1.14 +WEB_SITE="https://sites.google.com/site/e3editor/" 1.15 + 1.16 TARBALL="$PACKAGE-$VERSION.tgz" 1.17 -WEB_SITE="http://sites.google.com/site/e3editor" 1.18 WGET_URL="https://sites.google.com/site/e3editor/Home/$TARBALL?attredirects=0" 1.19 -TAGS="text-editor" 1.20 1.21 -DEPENDS="" 1.22 -BUILD_DEPENDS="make nasm wget" 1.23 +BUILD_DEPENDS="make nasm" 1.24 1.25 -# Rules to configure and make the package. 1.26 -compile_rules() 1.27 -{ 1.28 - sed -i -e 's/-D$(EXMODE)//' Makefile && 1.29 - sed -i -e 's#/man/man#/share/man/man#' Makefile 1.30 - make && make PREFIX=$DESTDIR install 1.31 +compile_rules() { 1.32 + sed \ 1.33 + -e 's/-D$(EXMODE)//' \ 1.34 + -e 's#/man/man#/share/man/man#' \ 1.35 + -i Makefile 1.36 + 1.37 + make && 1.38 + make PREFIX=$install install 1.39 } 1.40 1.41 -# Rules to gen a SliTaz package suitable for Tazpkg. 1.42 -genpkg_rules() 1.43 -{ 1.44 - mkdir -p $fs/usr 1.45 - cp -R $install/bin $fs/usr 1.46 +genpkg_rules() { 1.47 + copy @std 1.48 + TAGS="text-editor" 1.49 }