wok-next view dialog/receipt @ rev 20956

Random updates
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Sep 05 00:08:37 2018 +0300 (2018-09-05)
parents 757d032c55c7
children d5aab818505e
line source
1 # SliTaz package receipt v2.
3 PACKAGE="dialog"
4 VERSION="1.3-20180621"
5 CATEGORY="base-system"
6 SHORT_DESC="Script-interpreter which provides a set of curses widgets"
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="LGPL2.1"
9 WEB_SITE="http://invisible-island.net/dialog/" # "HTTP/1.1 403 Forbidden" for wget
11 TARBALL="$PACKAGE-$VERSION.tgz"
12 WGET_URL="ftp://ftp.invisible-island.net/dialog/$TARBALL"
14 BUILD_DEPENDS="ncurses-dev gettext"
15 SPLIT="dialog-dev"
17 compile_rules() {
18 ./configure \
19 --with-ncursesw \
20 --enable-nls \
21 --enable-widec \
22 $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$DESTDIR install || return 1
26 # Config file.
27 install -Dm644 $stuff/dialogrc $install/etc/dialogrc
29 cook_pick_manpages dialog.3
30 }
32 genpkg_rules() {
33 case $PACKAGE in
34 dialog)
35 copy @std
36 DEPENDS="ncurses"
37 ;;
38 *-dev)
39 copy @dev
40 ;;
41 esac
42 }