wok view zile/receipt @ rev 15015

zile: typo
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Aug 11 14:28:31 2013 +0000 (2013-08-11)
parents 2b9f96603415
children 8abb017ed841
line source
1 # SliTaz package receipt.
3 PACKAGE="zile"
4 VERSION="2.3.21"
5 CATEGORY="development"
6 SHORT_DESC="GNU Zile is a lightweight Emacs clone."
7 MAINTAINER="domcox@slitaz.org"
8 LICENSE="GPL3"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.gnu.org/software/zile/"
11 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
12 TAGS="text-editor"
14 DEPENDS="ncurses"
15 BUILD_DEPENDS="ncurses-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure \
22 --prefix=/usr \
23 --infodir=/usr/share/info \
24 --mandir=/usr/share/man \
25 $CONFIGURE_ARGS &&
26 make && make DESTDIR=$DESTDIR install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr
33 cp -a $install/usr/bin $fs/usr
34 }