wok view xfce-utils/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 f6beea7fe09b
children b7f1bd1b9ac7
line source
1 # SliTaz package receipt.
3 PACKAGE="xfce-utils"
4 VERSION="4.8.3"
5 CATEGORY="x-window"
6 SHORT_DESC="Xfce utilities"
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="https://www.xfce.org"
11 WGET_URL="http://archive.xfce.org/src/xfce/$PACKAGE/${VERSION%.*}/$TARBALL"
13 DEPENDS="libxfce4util libxfce4ui startup-notification dbus-glib"
14 BUILD_DEPENDS="libxfce4util-dev libxfce4ui-dev intltool startup-notification-dev \
15 util-linux-uuid-dev dbus-glib-dev libxfcegui4-dev xcb-util-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure --prefix=/usr \
21 --sysconfdir=/etc \
22 --enable-dbus \
23 --disable-debug \
24 --with-browser=browser \
25 --with-terminal=xterm \
26 --mandir=/usr/share/man $CONFIGURE_ARGS && \
27 make && make DESTDIR=$DESTDIR install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr $fs/usr/share/locale
34 cp -a $install/usr/bin $fs/usr
35 cp -a $install/etc $fs/
36 cp -a $install/usr/share/icons $fs/usr/share
37 cp -a $install/usr/share/dbus* $fs/usr/share
38 cp -a $install/usr/share/icons $fs/usr/share
39 cp -a $install/usr/share/locale/fr $fs/usr/share/locale
41 #Fix perms
42 chmod 755 $fs/usr/bin/*
43 }