wok view libxfconf/receipt @ rev 21460

syslinux/iso2exe/init: typo
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Apr 30 12:41:40 2019 +0200 (2019-04-30)
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 }