wok-next view Xdialog/receipt @ rev 20406

Continue: json-c, json-glib, keyutils, libarchive, libassuan, libatasmart, libatomic_ops, libblockdev, libbytesize, libcroco, libdaemon, libesmtp, libffi, libgcrypt, libgpg-error, libgsf, libgudev, libgusb
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Dec 08 02:55:48 2017 +0200 (2017-12-08)
parents 11b5e93cb5f2
children bce36a298f1e
line source
1 # SliTaz package receipt.
3 PACKAGE="Xdialog"
4 VERSION="2.3.1"
5 CATEGORY="x-window"
6 SHORT_DESC="Like 'dialog' or 'cdialog', but for X using GTK+."
7 MAINTAINER="rcx@zoominternet.net"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://xdialog.free.fr/"
11 WGET_URL="http://xdialog.free.fr/$TARBALL"
13 DEPENDS="glibc-base glib expat zlib fontconfig freetype gtk+ atk \
14 cairo pango pixman libpng libxcb xcb-util xorg-libX11 xorg-libXau \
15 xorg-libXcomposite xorg-libXcursor xorg-libXdamage xorg-libXdmcp \
16 xorg-libXext xorg-libXfixes xorg-libXinerama xorg-libXrender"
17 BUILD_DEPENDS="autoconf automake m4 gettext gtk+-dev"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 autoconf &&
23 ./configure \
24 --with-gtk2 \
25 --prefix=/usr \
26 --sysconfdir=/etc \
27 --mandir=/usr/share/man \
28 --infodir=/usr/share/info \
29 $CONFIGURE_ARGS &&
30 make &&
31 make DESTDIR=$DESTDIR install
32 }
34 # Rules to gen a SliTaz package suitable for Tazpkg.
35 genpkg_rules()
36 {
37 mkdir -p $fs/usr
38 cp -a $install/usr/bin $fs/usr
39 }