# SliTaz package receipt. PACKAGE="xfconf" VERSION="4.8.0" CATEGORY="x-window" SHORT_DESC="Xfce Copnfiguration Utility" MAINTAINER="erjo@slitaz.org" DEPENDS="gtk+ libxfce4util dbus-glib" BUILD_DEPENDS="gtk+-dev libxfce4util-dev dbus-dev dbus-glib-dev intltool" TARBALL="$PACKAGE-$VERSION.tar.bz2" WEB_SITE="http://www.xfce.org" WGET_URL="http://archive.xfce.org/src/xfce/$PACKAGE/${VERSION%.*}/$TARBALL" # Rules to configure and make the package. compile_rules() { cd $src ./configure --prefix=/usr \ --libexecdir=/usr/lib/$PACKAGE \ --infodir=/usr/share/info \ --disable-debug \ --mandir=/usr/share/man $CONFIGURE_ARGS && \ make && make DESTDIR=$PWD/_pkg install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr \ $fs/usr/lib \ $fs/usr/share/locale cp -a $_pkg/usr/bin $fs/usr cp -a $_pkg/usr/lib/*.so* $fs/usr/lib cp -a $_pkg/usr/lib/xfce4 $fs/usr/lib cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale cp -a $_pkg/usr/share/dbus-1 $fs/usr/share strip -s $fs/usr/lib/xfce4/$PACKAGE/* }