wok-next view connman-ui/receipt @ rev 19778

glib: no more libgio package:
As ldd show, libgio-2.0.so (from former libgio package) depends on libgobject-2.0.so.0, libgmodule-2.0.so.0, libglib-2.0.so.0 (from former glib package): libgio package depends on glib package.
In other hand, binaries from former glib package (gsettings, gapplication, gresource, gio-querymodules, glib-compile-resources, gdbus, gio) depends on libglib-2.0.so.0: glib package depends on libgio package.

Solution: packages was combined. Use 'glib' instead of 'libgio', as well as glib-dev instead of libgio-dev.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Jun 16 14:56:07 2017 +0300 (2017-06-16)
parents 62ba0c4b1135
children a9236dc0f5fb
line source
1 # SliTaz package receipt.
3 PACKAGE="connman-ui"
4 GITHASH="e4a8ddcca0870eb2ece5a7e3ea0296de9c86e5b2"
5 VERSION=${GITHASH:0:7}
6 CATEGORY="network"
7 SHORT_DESC="A full-featured GTK based trayicon UI for ConnMan"
8 MAINTAINER="domcox@slitaz.org"
9 LICENSE="GPL2"
10 WEB_SITE="http://github.com/tbursztyka/connman-ui"
11 TARBALL="$PACKAGE-$VERSION.zip"
12 WGET_URL="https://github.com/tbursztyka/connman-ui/archive/$GITHASH.zip"
14 DEPENDS="connman dbus gtk+3"
15 BUILD_DEPENDS="wget autoconf automake libtool connman-dev gtk+3-dev dbus-dev \
16 libxml2-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./autogen.sh &&
22 ./configure $CONFIGURE_ARGS &&
23 # remove Exite menu
24 cp -a $stuff/right_menu.ui $src/data/ui &&
25 # change some icons
26 cp -a $stuff/icons/*.png $src/data/icons &&
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/* $fs
35 }