wok-current rev 4142
Add: xfconf,xfconf-dev
author | Eric Joseph-Alexandre <erjo@slitaz.org> |
---|---|
date | Sun Sep 20 13:38:33 2009 +0000 (2009-09-20) |
parents | 17c8010fbf37 |
children | 3ca0c8972456 |
files | xfconf-dev/receipt xfconf/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/xfconf-dev/receipt Sun Sep 20 13:38:33 2009 +0000 1.3 @@ -0,0 +1,25 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="xfconf-dev" 1.7 +VERSION="4.6.1" 1.8 +CATEGORY="development" 1.9 +SHORT_DESC="Xfce Copnfiguration Utility dev files" 1.10 +MAINTAINER="erjo@slitaz.org" 1.11 +DEPENDS="xfconf" 1.12 +WANTED="xfconf" 1.13 +TARBALL="$PACKAGE-$VERSION.tar.bz2" 1.14 +WEB_SITE="http://www.xfce.org" 1.15 + 1.16 + 1.17 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.18 +genpkg_rules() 1.19 +{ 1.20 + mkdir -p $fs/usr \ 1.21 + $fs/usr/lib 1.22 + 1.23 + cp -a $_pkg/usr/include $fs/usr 1.24 + cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib 1.25 + cp -a $_pkg/usr/lib/*.*a $fs/usr/lib 1.26 +} 1.27 + 1.28 +
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/xfconf/receipt Sun Sep 20 13:38:33 2009 +0000 2.3 @@ -0,0 +1,40 @@ 2.4 +# SliTaz package receipt. 2.5 + 2.6 +PACKAGE="xfconf" 2.7 +VERSION="4.6.1" 2.8 +CATEGORY="x-window" 2.9 +SHORT_DESC="Xfce Copnfiguration Utility" 2.10 +MAINTAINER="erjo@slitaz.org" 2.11 +DEPENDS="gtk+ libxfce4util" 2.12 +BUILD_DEPENDS="gtk+-dev libxfce4util-dev dbus-dev dbus-glib-dev" 2.13 +TARBALL="$PACKAGE-$VERSION.tar.bz2" 2.14 +WEB_SITE="http://www.xfce.org" 2.15 +WGET_URL="http://www.p0llux.be/xfce/xfce-$VERSION/src/$TARBALL 2.16 + http://www.tx-us.xfce.org/archive/xfce-$VERSION/src/$TARBALL" 2.17 + 2.18 +# Rules to configure and make the package. 2.19 +compile_rules() 2.20 +{ 2.21 + cd $src 2.22 + ./configure --prefix=/usr \ 2.23 + --infodir=/usr/share/info \ 2.24 + --mandir=/usr/share/man $CONFIGURE_ARGS && \ 2.25 + make && make DESTDIR=$PWD/_pkg install 2.26 +} 2.27 + 2.28 +# Rules to gen a SliTaz package suitable for Tazpkg. 2.29 +genpkg_rules() 2.30 +{ 2.31 + mkdir -p $fs/usr \ 2.32 + $fs/usr/lib \ 2.33 + $fs/usr/share/locale 2.34 + 2.35 + 2.36 + cp -a $_pkg/usr/bin $fs/usr 2.37 + cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 2.38 + cp -a $_pkg/usr/libexec $fs/usr 2.39 + cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale 2.40 + cp -a $_pkg/usr/share/dbus-1 $fs/usr/share 2.41 + 2.42 + strip -s $fs/usr/libexec/* 2.43 +}