wok view Xdialog/receipt @ rev 15000

Add some GPL2 licenses
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Aug 10 17:00:38 2013 +0000 (2013-08-10)
parents 398fccd8a77f
children 45507bfb2b0d
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 libgio 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="slitaz-toolchain autoconf automake m4 gettext gtk+ gtk+-dev"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 cd $src
23 autoconf &&
24 ./configure \
25 --with-gtk2 \
26 --prefix=/usr \
27 --sysconfdir=/etc \
28 --mandir=/usr/share/man \
29 --infodir=/usr/share/info \
30 $CONFIGURE_ARGS &&
31 make &&
32 make DESTDIR=$DESTDIR install
33 }
35 # Rules to gen a SliTaz package suitable for Tazpkg.
36 genpkg_rules()
37 {
38 mkdir -p $fs/usr
39 cp -a $install/usr/bin $fs/usr
40 }