wok view zile/receipt @ rev 9880

xfmpc: Fix BD
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Tue May 17 00:45:18 2011 +0200 (2011-05-17)
parents 431c5cb9f855
children 2b9f96603415
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 DEPENDS="ncurses"
9 BUILD_DEPENDS="ncurses-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://www.gnu.org/software/zile/"
12 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
13 TAGS="text-editor"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr \
21 --infodir=/usr/share/info \
22 --mandir=/usr/share/man \
23 $CONFIGURE_ARGS &&
24 make && make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr
31 cp -a $_pkg/usr/bin $fs/usr
32 }