wok view zenity/receipt @ rev 21160

Up ufraw (0.22)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Mar 31 15:04:44 2019 +0200 (2019-03-31)
parents 191b99ca9dc2
children 4ed10109d053
line source
1 # SliTaz package receipt.
3 PACKAGE="zenity"
4 VERSION="2.32.1"
5 CATEGORY="development"
6 SHORT_DESC="gui dialogs"
7 MAINTAINER="allan316@gmail.com"
8 LICENSE="LGPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="https://www.gnome.org"
11 WGET_URL="http://ftp.acc.umu.se/pub/GNOME/sources/$PACKAGE/${VERSION%.*}/$TARBALL"
12 TAGS="dialogs gui"
14 DEPENDS="gtk+ libglade libnotify"
15 BUILD_DEPENDS="gnome-doc-utils gnome-doc-utils-dev libglade-dev \
16 intltool pkg-config docbook-xsl"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 cd $src
22 ./configure \
23 --prefix=/usr \
24 --localstatedir=/var/lib \
25 --disable-scrollkeeper \
26 --infodir=/usr/share/info \
27 --mandir=/usr/share/man \
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/share
36 cp -a $install/usr/bin $fs/usr
37 cp -a $install/usr/share/zenity $fs/usr/share
38 cp -a $install/usr/share/omf $fs/usr/share
39 # gdialog wrapper need to be executable.
40 chmod +x $fs/usr/bin/*
41 }