wok-4.x view dialog/receipt @ rev 12471
Mass Rebuild of base packages
author | Stanislas Leduc <shann@slitaz.org> |
---|---|
date | Thu Nov 10 11:11:46 2022 +0000 (2022-11-10) |
parents | b226995ee0d0 |
children |
line source
1 # SliTaz package receipt.
3 PACKAGE="dialog"
4 VERSION="1.1-20110707"
5 CATEGORY="base-system"
6 SHORT_DESC="Script-interpreter which provides a set of curses widgets."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="ncursesw"
9 BUILD_DEPENDS="ncursesw-dev"
10 TARBALL="$PACKAGE-$VERSION.tgz"
11 WEB_SITE="http://invisible-island.net/dialog/"
12 #WGET_URL="ftp://invisible-island.net/$PACKAGE/$TARBALL"
13 WGET_URL="http://mirror.slitaz.org/sources/packages-4.0/d/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr \
21 --sysconfdir=/etc \
22 --mandir=/usr/share/man \
23 --with-ncursesw \
24 --enable-nls \
25 --enable-widec \
26 $CONFIGURE_ARGS &&
27 make &&
28 make DESTDIR=$DESTDIR install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr $fs/etc
35 cp -a $_pkg/usr/bin $fs/usr
36 # Config file.
37 cp $stuff/dialogrc $fs/etc
38 }