wok rev 4235

xfdesktop: fix FSH
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Sep 24 15:52:59 2009 +0200 (2009-09-24)
parents 326830426b97
children 64353f1da619
files xfdesktop/receipt
line diff
     1.1 --- a/xfdesktop/receipt	Thu Sep 24 15:47:14 2009 +0200
     1.2 +++ b/xfdesktop/receipt	Thu Sep 24 15:52:59 2009 +0200
     1.3 @@ -21,6 +21,7 @@
     1.4  	--enable-exo \
     1.5  	--enable-thunarx \
     1.6  	--disable-static \
     1.7 +	--libexecdir=/usr/lib/$PACKAGE \
     1.8  	--mandir=/usr/share/man $CONFIGURE_ARGS && \
     1.9  	make && make DESTDIR=$PWD/_pkg install
    1.10  }
    1.11 @@ -28,20 +29,20 @@
    1.12  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.13  genpkg_rules()
    1.14  {
    1.15 -	mkdir -p $fs/usr \
    1.16 +	mkdir -p $fs/usr/lib \
    1.17  		$fs/usr/share/locale \
    1.18  		$fs/usr/share/xfce4
    1.19  
    1.20  	cp -a $_pkg/usr/bin $fs/usr
    1.21  	cp -a $_pkg/etc $fs/
    1.22 -	cp -a $_pkg/usr/libexec $fs/usr
    1.23 +	cp -a $_pkg/usr/lib/$PACKAGE $fs/usr/lib
    1.24  	cp -a $_pkg/usr/lib $fs/usr
    1.25  	cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
    1.26  	cp -a $_pkg/usr/share/applications $fs/usr/share
    1.27  	cp -a $_pkg/usr/share/desktop-directories $fs/usr/share
    1.28  	cp -a $_pkg/usr/share/xfce4/panel-plugins $fs/usr/share/xfce4
    1.29  	
    1.30 -	strip -s $fs/usr/libexec/xfce4/panel-plugins/*
    1.31 +	strip -s $fs/usr/lib/$PACKAGE/xfce4/panel-plugins/*
    1.32  
    1.33  }
    1.34