wok-next view dialog/receipt @ rev 19733

Some receipts v2: apr, apr-util, aspell, at-spi2-core, at-spi2-atk, atk, atkmm, cairomm, colord, glibmm, libsigc++, libxslt.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri May 26 16:40:11 2017 +0300 (2017-05-26)
parents e7a1efd38066
children 38cf0c75fa4c
line source
1 # SliTaz package receipt.
3 PACKAGE="dialog"
4 VERSION="1.3-20160828"
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/"
10 HOST_ARCH="i486 arm"
12 TARBALL="$PACKAGE-$VERSION.tgz"
13 WGET_URL="ftp://invisible-island.net/dialog/$TARBALL"
15 DEPENDS="ncurses"
16 BUILD_DEPENDS="ncurses-dev gettext"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./configure \
22 --prefix=/usr \
23 --sysconfdir=/etc \
24 --mandir=/usr/share/man \
25 --with-ncursesw \
26 --enable-nls \
27 --enable-widec \
28 $CONFIGURE_ARGS &&
29 make && make DESTDIR=$DESTDIR install
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p $fs/usr $fs/etc
36 cp -a $install/usr/bin $fs/usr
37 # Config file.
38 cp $stuff/dialogrc $fs/etc
39 }