wok view metacity/receipt @ rev 22339

qt4-examples: fix previous commit
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Nov 15 18:53:02 2019 +0100 (2019-11-15)
parents 346b104468cc
children 0840763b8546
line source
1 # SliTaz package receipt.
3 PACKAGE="metacity"
4 VERSION="2.30.3"
5 CATEGORY="x-window"
6 SHORT_DESC="Window manager"
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 HI_VERSION=$(echo $VERSION | sed 's|\([0-9\.]*\)\.[0-9]*|\1|')
11 WEB_SITE="http://blogs.gnome.org/metacity/"
12 WGET_URL="http://ftp.acc.umu.se/pub/gnome/sources/metacity/$HI_VERSION/$TARBALL"
14 DEPENDS="gsettings-desktop-schemas libgio glib gtk+ xorg-libXcomposite \
15 xorg-libXdamage zenity xorg-libXinerama xorg-libXrandr xorg-libXcursor \
16 libcanberra libltdl libvorbis libogg GConf"
17 BUILD_DEPENDS="gsettings-desktop-schemas libgio-dev glib-dev gtk+-dev \
18 xorg-libXcomposite-dev xorg-libXdamage-dev zenity xorg-libXinerama-dev \
19 xorg-libXrandr-dev xorg-libXcursor-dev libcanberra-dev libltdl libvorbis-dev \
20 libogg-dev libtool gnome-doc-utils-dev GConf-dev util-linux-uuid-dev file"
22 # Rules to configure and make the package.
23 compile_rules()
24 {
25 ./configure --prefix=/usr \
26 --disable-verbose-mode --disable-sm --disable-scrollkeeper
27 make &&
28 make DESTDIR=$DESTDIR install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 cp -a $install/usr $fs
35 rm -rf $fs/usr/include $fs/usr/lib/pkgconfig $fs/usr/share/gnome \
36 $fs/usr/share/gnome-control-center $fs/usr/share/man $fs/usr/share/locale
37 rm $fs/usr/lib/libmetacity-private.a $fs/usr/lib/libmetacity-private.la
38 }