wok-current view gnome-desktop3/receipt @ rev 25694

Fix cifs-utils, up grub2-efi-x64 stuff for iso EFI
author Stanislas Leduc <shann@slitaz.org>
date Sat Mar 30 18:05:22 2024 +0000 (6 months ago)
parents
children
line source
1 # SliTaz package receipt.
3 PACKAGE="gnome-desktop3"
4 VERSION="3.24.2"
5 CATEGORY="x-window"
6 SHORT_DESC="GNOME Desktop 3.x"
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="gnome-desktop-$VERSION.tar.xz"
10 WEB_SITE="https://www.gnome.org"
11 WGET_URL="http://ftp.gnome.org/pub/gnome/sources/gnome-desktop/${VERSION%.*}/$TARBALL"
13 DEPENDS="gtk+3 startup-notification"
14 BUILD_DEPENDS="python-dev libxml2-python dbus-glib-dev intltool gtk+3-dev \
15 xorg-xkeyboard-config-dev iso-codes gsettings-desktop-schemas itstool"
17 current_version()
18 {
19 wget -O - $(dirname $WGET_URL) 2>/dev/null | \
20 sed "/$PACKAGE-[0-9]/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*\".*|\\1|" | sort -Vr | sed q
21 }
23 # Rules to configure and make the package.
24 compile_rules()
25 {
26 cd $src
27 ./configure \
28 --prefix=/usr \
29 --sysconfdir=/etc/gnome \
30 --localstatedir=/var/lib \
31 --enable-gtk-doc-html=no \
32 --enable-gtk-doc=no \
33 --disable-scrollkeeper \
34 --disable-static \
35 --with-gnome-distributor="SliTaz GNU/Linux" \
36 $CONFIGURE_ARGS &&
37 make && make DESTDIR=$DESTDIR install
38 }
40 # Rules to gen a SliTaz package suitable for Tazpkg.
41 genpkg_rules()
42 {
43 mkdir -p $fs/usr/lib
44 cp -a $install/usr/lib/*.so* $fs/usr/lib
45 }