wok-next view libgnome/receipt @ rev 21722

efivar: typo in post_install
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 10:31:46 2020 +0000 (2020-09-01)
parents d2950281f122
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="libgnome"
4 VERSION="2.32.1"
5 CATEGORY="x-window"
6 SHORT_DESC="GNOME Library"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://www.gnome.org/"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION%.*}/$TARBALL"
14 BUILD_DEPENDS="automake libtool gettext-dev gconf-dev intltool gnome-vfs-dev \
15 libbonobo-dev libcanberra-dev popt-dev libgcrypt-dev"
16 SPLIT="$PACKAGE-dev"
18 compile_rules() {
19 autoreconf -fi
21 ./configure \
22 --sysconfdir=/etc/gnome \
23 --localstatedir=/var/lib \
24 $CONFIGURE_ARGS &&
25 fix libtool &&
26 make &&
27 make install || return 1
29 mkdir -p $install/usr/share/images
30 ln -s ../pixmaps/backgrounds/gnome/background-default.jpg \
31 $install/usr/share/images/gnome-default.jpg
32 }
34 genpkg_rules() {
35 case $PACKAGE in
36 libgnome)
37 copy @std
38 DEPENDS="gconf glib gnome-vfs libbonobo libcanberra orbit2 popt"
39 ;;
40 *-dev)
41 copy @dev
42 DEPENDS="libgnome gconf-dev glib-dev gnome-vfs-dev libbonobo-dev \
43 libcanberra-dev orbit2-dev popt-dev"
44 ;;
45 esac
46 }