wok-current view libxfce4ui/receipt @ rev 13704
adding folder creations & perms
| author | xfred222 | 
|---|---|
| date | Mon Dec 17 08:42:01 2012 -0500 (2012-12-17) | 
| parents | 7a41942660df | 
| children | 1ec8a747eee5 | 
 line source
     1 # SliTaz package receipt.
     3 PACKAGE="libxfce4ui"
     4 VERSION="4.8.0"
     5 CATEGORY="x-window"
     6 SHORT_DESC="Xfce Gtk Widget library"
     7 MAINTAINER="erjo@slitaz.org"
     8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
     9 WEB_SITE="http://www.xfce.org"
    10 WGET_URL="http://archive.xfce.org/xfce/${VERSION%.*}/src/$TARBALL"
    12 DEPENDS="gtk+ libxfce4util xfconf startup-notification dbus-glib libglade \
    13 util-linux-uuid"
    14 BUILD_DEPENDS="gtk+-dev libxfce4util-dev xfconf-dev startup-notification-dev 
    15 libglade-dev xcb-util-dev util-linux-uuid-dev intltool"
    17 # Rules to configure and make the package.
    18 compile_rules()
    19 {
    20 	cd $src
    21 	./configure --prefix=/usr \
    22 		--sysconfdir=/etc \
    23 		--disable-debug $CONFIGURE_ARGS &&
    24 	make &&
    25 	make DESTDIR=$DESTDIR install
    26 }
    28 # Rules to gen a SliTaz package suitable for Tazpkg.
    29 genpkg_rules()
    30 {
    31 	mkdir -p $fs/usr/lib \
    32 		$fs/usr/share/locale 
    34 	cp -a $_pkg/etc $fs/
    35 	cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
    36 	cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
    37 }