wok view libxfce4util/receipt @ rev 21970

updated sshttp (0-31s -> 0.35s2)
author Hans-G?nter Theisgen
date Fri Oct 11 13:41:00 2019 +0100 (2019-10-11)
parents a5a22b5fb904
children c37ae188e486
line source
1 # SliTaz package receipt.
3 PACKAGE="libxfce4util"
4 VERSION="4.11.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 }