wok view dialog/receipt @ rev 18394

mtpaint: disable libopenjpeg & libjasper
author Xander Ziiryanoff <psychomaniak@xakep.ru>
date Sat Sep 19 01:58:35 2015 +0200 (2015-09-19)
parents 76b72f1ad63c
children 81d24f5c2cc9
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 LICENSE="LGPL2.1"
9 TARBALL="$PACKAGE-$VERSION.tgz"
10 WEB_SITE="http://invisible-island.net/dialog/"
11 WGET_URL="ftp://invisible-island.net/$PACKAGE/$TARBALL"
12 HOST_ARCH="i486 arm"
14 DEPENDS="ncursesw"
15 BUILD_DEPENDS="ncursesw-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
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 }