wok-undigest view libgweather/receipt @ rev 1229

updated libgio and libgio-dev (2.43.3 -> 2.62.4)
author Hans-G?nter Theisgen
date Wed Sep 09 14:00:14 2020 +0100 (2020-09-09)
parents f836b85e4c0d
children
line source
1 # SliTaz package receipt.
3 PACKAGE="libgweather"
4 VERSION="2.30.3"
5 CATEGORY="x-window"
6 SHORT_DESC="Gnome 2 tool providing access to weather information"
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://www.gnome.org"
11 WGET_URL="http://ftp.gnome.org/pub/gnome/sources/$PACKAGE/${VERSION%.*}/$TARBALL"
13 DEPENDS="GConf gtk+ libsoup"
14 BUILD_DEPENDS="GConf-dev gtk+-dev libsoup-dev glib-dev sqlite-dev libgio-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure \
20 --prefix=/usr \
21 --sysconfdir=/etc/gnome \
22 --localstatedir=/var/lib \
23 --enable-gtk-doc-html=no \
24 --enable-gtk-doc=no \
25 --disable-scrollkeeper \
26 --disable-static \
27 $CONFIGURE_ARGS &&
28 make && make install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr/lib $fs/usr/share/icons/hicolor
35 cp -a $install/etc $fs
36 cp -a $install/usr/lib/*.so* $fs/usr/lib
37 cp -a $install/usr/share/icons/gnome/32x32 \
38 $fs/usr/share/icons/hicolor
39 cp -a $install/usr/share/${PACKAGE} $fs/usr/share
41 #cp -a $install/usr/share/dbus-1 $fs/usr/share
42 }