wok view metacity/receipt @ rev 22042

gcc83-lib-base: do NOT provide gcc-lib-base
Currently BOTH gcc-lib-base and gcc83-lib-base are installed on my SliTaz system. So, with the current (and longstanding) tazpkg limitations I can't update just gcc-lib-base: tazpkg always updates gcc83-lib-base for me instead. Now I can't run Firefox, Vivaldi, Chrome, etc. I think because of gcc-lib-base, but I not sure 1bsolutely.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Oct 22 12:55:54 2019 +0300 (2019-10-22)
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 }