wok view zile/receipt @ rev 11859

up nss-ldapd 0.7.15
author Samuel Trassare <samuel_trassare@yahoo.com>
date Mon Feb 27 10:14:03 2012 -0800 (2012-02-27)
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 }