wok annotate dialog/receipt @ rev 19754

bash: without installed readline
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Feb 18 23:01:05 2017 +0100 (2017-02-18)
parents 77fb5713f10e
children a78610b2eb47
rev   line source
pankso@35 1 # SliTaz package receipt.
pankso@35 2
pankso@35 3 PACKAGE="dialog"
pascal@19374 4 VERSION="1.3-20160424"
pankso@211 5 CATEGORY="base-system"
pankso@35 6 SHORT_DESC="Script-interpreter which provides a set of curses widgets."
pankso@35 7 MAINTAINER="pankso@slitaz.org"
pascal@14996 8 LICENSE="LGPL2.1"
pascal@1482 9 TARBALL="$PACKAGE-$VERSION.tgz"
slaxemulator@11097 10 WEB_SITE="http://invisible-island.net/dialog/"
pascal@1482 11 WGET_URL="ftp://invisible-island.net/$PACKAGE/$TARBALL"
pankso@12840 12 HOST_ARCH="i486 arm"
pankso@12840 13
pankso@12840 14 DEPENDS="ncursesw"
pankso@12840 15 BUILD_DEPENDS="ncursesw-dev"
pankso@35 16
pankso@35 17 # Rules to configure and make the package.
pankso@35 18 compile_rules()
pankso@35 19 {
pankso@4895 20 ./configure \
pankso@4895 21 --prefix=/usr \
pankso@4895 22 --sysconfdir=/etc \
pankso@4895 23 --mandir=/usr/share/man \
pankso@4895 24 --with-ncursesw \
al@16546 25 --enable-nls \
pankso@4895 26 --enable-widec \
pankso@4895 27 $CONFIGURE_ARGS &&
pankso@12840 28 make && make DESTDIR=$DESTDIR install
pankso@35 29 }
pankso@35 30
pankso@35 31 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@35 32 genpkg_rules()
pankso@35 33 {
pankso@4895 34 mkdir -p $fs/usr $fs/etc
pankso@12840 35 cp -a $install/usr/bin $fs/usr
pankso@35 36 # Config file.
slaxemulator@11097 37 cp $stuff/dialogrc $fs/etc
pankso@35 38 }