# HG changeset patch # User Pascal Bellard # Date 1253800379 -7200 # Node ID 7d74bf2272641439f30222514247b5a6a5af4969 # Parent 326830426b97214ce54164f71aa148ce0a9294aa xfdesktop: fix FSH diff -r 326830426b97 -r 7d74bf227264 xfdesktop/receipt --- a/xfdesktop/receipt Thu Sep 24 15:47:14 2009 +0200 +++ b/xfdesktop/receipt Thu Sep 24 15:52:59 2009 +0200 @@ -21,6 +21,7 @@ --enable-exo \ --enable-thunarx \ --disable-static \ + --libexecdir=/usr/lib/$PACKAGE \ --mandir=/usr/share/man $CONFIGURE_ARGS && \ make && make DESTDIR=$PWD/_pkg install } @@ -28,20 +29,20 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr \ + mkdir -p $fs/usr/lib \ $fs/usr/share/locale \ $fs/usr/share/xfce4 cp -a $_pkg/usr/bin $fs/usr cp -a $_pkg/etc $fs/ - cp -a $_pkg/usr/libexec $fs/usr + cp -a $_pkg/usr/lib/$PACKAGE $fs/usr/lib cp -a $_pkg/usr/lib $fs/usr cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale cp -a $_pkg/usr/share/applications $fs/usr/share cp -a $_pkg/usr/share/desktop-directories $fs/usr/share cp -a $_pkg/usr/share/xfce4/panel-plugins $fs/usr/share/xfce4 - strip -s $fs/usr/libexec/xfce4/panel-plugins/* + strip -s $fs/usr/lib/$PACKAGE/xfce4/panel-plugins/* }