wok-current annotate zile/receipt @ 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 | |
children | 86f4ba548338 |
rev | line source |
---|---|
domcox@3940 | 1 # SliTaz package receipt. |
domcox@3940 | 2 |
domcox@3940 | 3 PACKAGE="zile" |
domcox@3940 | 4 VERSION="2.3.9" |
domcox@3940 | 5 CATEGORY="development" |
domcox@3940 | 6 SHORT_DESC="GNU Zile is a lightweight Emacs clone." |
domcox@3940 | 7 MAINTAINER="domcox@slitaz.org" |
domcox@3940 | 8 DEPENDS="" |
domcox@3940 | 9 TARBALL="$PACKAGE-$VERSION.tar.gz" |
domcox@3940 | 10 WEB_SITE="http://www.gnu.org/software/zile/" |
domcox@3940 | 11 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL" |
domcox@3940 | 12 |
domcox@3940 | 13 # Rules to configure and make the package. |
domcox@3940 | 14 compile_rules() |
domcox@3940 | 15 { |
domcox@3940 | 16 cd $src |
domcox@3940 | 17 ./configure \ |
domcox@3940 | 18 --prefix=/usr \ |
domcox@3940 | 19 --infodir=/usr/share/info \ |
domcox@3940 | 20 --mandir=/usr/share/man \ |
domcox@3940 | 21 $CONFIGURE_ARGS && |
domcox@3940 | 22 make && make DESTDIR=$PWD/_pkg install |
domcox@3940 | 23 } |
domcox@3940 | 24 |
domcox@3940 | 25 # Rules to gen a SliTaz package suitable for Tazpkg. |
domcox@3940 | 26 genpkg_rules() |
domcox@3940 | 27 { |
domcox@3940 | 28 mkdir -p $fs/usr |
domcox@3940 | 29 cp -a $_pkg/usr/bin $fs/usr |
domcox@3940 | 30 } |
domcox@3940 | 31 |