# HG changeset patch # User Dominique Corbex # Date 1250938555 -7200 # Node ID 7ed2560e7d9317285ceff950bdec9df34c43f411 # Parent 4cf5da7c32ac17b9b19e09fcbda1672a7fcd97b5 add zile: a lightweight Emacs clone. diff -r 4cf5da7c32ac -r 7ed2560e7d93 zile/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/zile/description.txt Sat Aug 22 12:55:55 2009 +0200 @@ -0,0 +1,1 @@ +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. diff -r 4cf5da7c32ac -r 7ed2560e7d93 zile/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/zile/receipt Sat Aug 22 12:55:55 2009 +0200 @@ -0,0 +1,31 @@ +# SliTaz package receipt. + +PACKAGE="zile" +VERSION="2.3.9" +CATEGORY="development" +SHORT_DESC="GNU Zile is a lightweight Emacs clone." +MAINTAINER="domcox@slitaz.org" +DEPENDS="" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://www.gnu.org/software/zile/" +WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man \ + $CONFIGURE_ARGS && + make && make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr + cp -a $_pkg/usr/bin $fs/usr +} +