wok-6.x rev 3940
add zile: a lightweight Emacs clone.
author | Dominique Corbex <domcox@users.sourceforge.net> |
---|---|
date | Sat Aug 22 12:55:55 2009 +0200 (2009-08-22) |
parents | 4cf5da7c32ac |
children | 86f4ba548338 |
files | zile/description.txt zile/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/zile/description.txt Sat Aug 22 12:55:55 2009 +0200 1.3 @@ -0,0 +1,1 @@ 1.4 +Zile is short for Zile Is Lossy Emacs. Zile has been written to be as similar as possible to Emacs; every Emacs user should feel at home.
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/zile/receipt Sat Aug 22 12:55:55 2009 +0200 2.3 @@ -0,0 +1,31 @@ 2.4 +# SliTaz package receipt. 2.5 + 2.6 +PACKAGE="zile" 2.7 +VERSION="2.3.9" 2.8 +CATEGORY="development" 2.9 +SHORT_DESC="GNU Zile is a lightweight Emacs clone." 2.10 +MAINTAINER="domcox@slitaz.org" 2.11 +DEPENDS="" 2.12 +TARBALL="$PACKAGE-$VERSION.tar.gz" 2.13 +WEB_SITE="http://www.gnu.org/software/zile/" 2.14 +WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL" 2.15 + 2.16 +# Rules to configure and make the package. 2.17 +compile_rules() 2.18 +{ 2.19 + cd $src 2.20 + ./configure \ 2.21 + --prefix=/usr \ 2.22 + --infodir=/usr/share/info \ 2.23 + --mandir=/usr/share/man \ 2.24 + $CONFIGURE_ARGS && 2.25 + make && make DESTDIR=$PWD/_pkg install 2.26 +} 2.27 + 2.28 +# Rules to gen a SliTaz package suitable for Tazpkg. 2.29 +genpkg_rules() 2.30 +{ 2.31 + mkdir -p $fs/usr 2.32 + cp -a $_pkg/usr/bin $fs/usr 2.33 +} 2.34 +