# HG changeset patch # User Christophe Lincoln # Date 1219061371 -7200 # Node ID b104da8122e23fb39a9d78f0eedc83cc750592be # Parent 48b017df56585034501199f07bdb5e14de4ae3d0 Add: libwnck (Window Navigator Construction Kit) diff -r 48b017df5658 -r b104da8122e2 libwnck-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libwnck-dev/receipt Mon Aug 18 14:09:31 2008 +0200 @@ -0,0 +1,18 @@ +# SliTaz package receipt. + +PACKAGE="libwnck-dev" +VERSION="2.22.3" +CATEGORY="development" +SHORT_DESC="libwnck devel files." +MAINTAINER="pankso@slitaz.org" +WANTED="libwnck" +WEB_SITE="http://libcddb.sourceforge.net/" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $_pkg/usr/lib/*.*a $fs/usr/lib + cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib + cp -a $_pkg/usr/include $fs/usr +} diff -r 48b017df5658 -r b104da8122e2 libwnck/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libwnck/receipt Mon Aug 18 14:09:31 2008 +0200 @@ -0,0 +1,31 @@ +# SliTaz package receipt. + +PACKAGE="libwnck" +VERSION="2.22.3" +CATEGORY="x-window" +SHORT_DESC="libwnck is Window Navigator Construction Kit." +MAINTAINER="pankso@slitaz.org" +TARBALL="$PACKAGE-$VERSION.tar.bz2" +WEB_SITE="http://ftp.acc.umu.se/pub/gnome/sources/libwnck/" +WGET_URL="http://ftp.acc.umu.se/pub/gnome/sources/libwnck/2.22/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --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/lib + cp -a $_pkg/usr/bin $fs/usr + cp -a $_pkg/usr/lib/*.so* $fs/usr/lib +}