wok view dialog/receipt @ rev 178

Removed cat base-apps and dispatch pkgs
author Christophe Lincoln <pankso@slitaz.org>
date Sat Feb 02 01:23:02 2008 +0100 (2008-02-02)
parents 67f32e5e811a
children cf22fee17710
line source
1 # SliTaz package receipt.
3 PACKAGE="dialog"
4 VERSION="1.1-20070930"
5 CATEGORY="extra"
6 SHORT_DESC="Script-interpreter which provides a set of curses widgets."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="ncurses"
9 TARBALL="$PACKAGE.tar.gz"
10 WEB_SITE="http://invisible-island.net/dialog/"
11 WGET_URL="ftp://invisible-island.net/dialog/dialog.tar.gz"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure --enable-nls --prefix=/usr \
18 --sysconfdir=/etc --mandir=/usr/share/man \
19 $CONFIGURE_ARGS
20 make
21 make DESTDIR=$PWD/_pkg install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/share/locale $fs/etc
28 cp -a $_pkg/usr/bin $fs/usr
29 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
30 strip -s $fs/usr/bin/*
31 # Config file.
32 cp stuff/dialogrc $fs/etc
33 }