wok view libxfconf/receipt @ rev 21600

Up: smplayer(19.5.0), xine-lib(1.2.9), xine-ui(0.99.10)
author maniac
date Thu May 23 12:16:28 2019 +0300 (2019-05-23)
parents a78610b2eb47
children 385cb03e0228
line source
1 # SliTaz package receipt.
3 PACKAGE="libxfconf"
4 SOURCE="xfconf"
5 VERSION="4.13.6"
6 CATEGORY="development"
7 SHORT_DESC="Client library for Xfce4 configure interface."
8 MAINTAINER="al.bobylev@gmail.com"
9 LICENSE="GPL2"
10 WEB_SITE="https://www.xfce.org/"
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 }