wok view libxfconf/receipt @ rev 23848

inkscape: update build_depends
author Richard Dunbar <mojo@slitaz.org>
date Sun Jun 14 23:18:03 2020 -0400 (2020-06-14)
parents 385cb03e0228
children 17091bc7c301
line source
1 # SliTaz package receipt.
3 PACKAGE="libxfconf"
4 VERSION="4.14.1"
5 CATEGORY="development"
6 SHORT_DESC="Client library for Xfce4 configure interface."
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="GPL2"
9 WEB_SITE="https://www.xfce.org/"
11 SOURCE="xfconf"
12 TARBALL="$SOURCE-$VERSION.tar.bz2"
13 WGET_URL="http://archive.xfce.org/src/xfce/$SOURCE/${VERSION%.*}/$TARBALL"
15 DEPENDS="dbus-glib libxfce4util"
16 BUILD_DEPENDS="dbus-glib-dev libxfce4util-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./configure $CONFIGURE_ARGS &&
22 make -j 1 &&
23 make install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib
30 mkdir -p $fs/usr/share
32 cp -a $install/usr/bin $fs/usr
33 cp -a $install/usr/lib/xfce4 $fs/usr/lib
34 cp -a $install/usr/lib/*.so* $fs/usr/lib
35 cp -a $install/usr/share/dbus-1 $fs/usr/share
36 }