wok-stable annotate zile/receipt @ rev 4906
Add octave
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Fri Feb 12 20:56:32 2010 +0100 (2010-02-12) |
parents | 7ed2560e7d93 |
children | b303dfac3b48 |
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@3941 | 8 DEPENDS="ncurses" |
domcox@3941 | 9 BUILD_DEPENDS="ncurses-dev" |
domcox@3940 | 10 TARBALL="$PACKAGE-$VERSION.tar.gz" |
domcox@3940 | 11 WEB_SITE="http://www.gnu.org/software/zile/" |
domcox@3940 | 12 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL" |
domcox@3940 | 13 |
domcox@3940 | 14 # Rules to configure and make the package. |
domcox@3940 | 15 compile_rules() |
domcox@3940 | 16 { |
domcox@3940 | 17 cd $src |
domcox@3940 | 18 ./configure \ |
domcox@3940 | 19 --prefix=/usr \ |
domcox@3940 | 20 --infodir=/usr/share/info \ |
domcox@3940 | 21 --mandir=/usr/share/man \ |
domcox@3940 | 22 $CONFIGURE_ARGS && |
domcox@3940 | 23 make && make DESTDIR=$PWD/_pkg install |
domcox@3940 | 24 } |
domcox@3940 | 25 |
domcox@3940 | 26 # Rules to gen a SliTaz package suitable for Tazpkg. |
domcox@3940 | 27 genpkg_rules() |
domcox@3940 | 28 { |
domcox@3940 | 29 mkdir -p $fs/usr |
domcox@3940 | 30 cp -a $_pkg/usr/bin $fs/usr |
domcox@3940 | 31 } |
domcox@3940 | 32 |