wok view libxfce4util/receipt @ rev 22412

up xfce4 4.14.0/1 ; we've a mix of versions here 4.10/4.11... (requested in forum: http://forum.slitaz.org/topic/xfce-can-not-install )
author Erkan Yilmaz <erkan@slitaz.org>
date Sat Dec 14 16:16:41 2019 +0000 (2019-12-14)
parents 6e8b1bcb30e2
children 14c3302cba3c
line source
1 # SliTaz package receipt.
3 PACKAGE="libxfce4util"
4 VERSION="4.14.0"
5 CATEGORY="x-window"
6 SHORT_DESC="Xfce Utility library"
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="LGPL2"
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="gtk+"
14 BUILD_DEPENDS="gtk+-dev intltool pkg-config"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure --prefix=/usr \
21 --infodir=/usr/share/info \
22 --disable-debug \
23 --mandir=/usr/share/man $CONFIGURE_ARGS && \
24 make && make DESTDIR=$DESTDIR install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr \
31 $fs/usr/lib \
32 $fs/usr/share/locale
34 cp -a $install/usr/sbin $fs/usr
35 cp -a $install/usr/lib/*.so* $fs/usr/lib
36 cp -a $install/usr/share/locale/fr $fs/usr/share/locale
37 }