# HG changeset patch # User Christophe Lincoln # Date 1396062310 -3600 # Node ID 8457249d0f207c26d9e3b9be18d5a04e081db778 # Parent 1204cf352c748050fa496eb1d7d39bf49d33e4fe Add Wayland server (This is our futur :-) diff -r 1204cf352c74 -r 8457249d0f20 wayland-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/wayland-dev/receipt Sat Mar 29 04:05:10 2014 +0100 @@ -0,0 +1,23 @@ +# SliTaz package receipt. + +PACKAGE="wayland-dev" +VERSION="1.4.0" +CATEGORY="development" +SHORT_DESC="Wayland X server devel files." +MAINTAINER="pankso@slitaz.org" +LICENSE="MIT" +WANTED="wayland" +WEB_SITE="http://www.bluez.org/" + +DEPENDS="" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib $fs/usr/share + cp -a $install/usr/include $fs/usr + cp -a $install/usr/lib/*.*a $fs/usr/lib + cp -a $install/usr/lib/pkgconfig $fs/usr/lib + cp -a $install/usr/share/pkgconfig/* $fs/usr/lib/pkgconfig + cp -a $install/usr/share/aclocal $fs/usr/share +} diff -r 1204cf352c74 -r 8457249d0f20 wayland/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/wayland/receipt Sat Mar 29 04:05:10 2014 +0100 @@ -0,0 +1,33 @@ +# SliTaz package receipt. + +PACKAGE="wayland" +VERSION="1.4.0" +CATEGORY="x-window" +SHORT_DESC="Wayland simpler X display server protocol." +MAINTAINER="pankso@slitaz.org" +LICENSE="MIT" +TARBALL="$PACKAGE-$VERSION.tar.xz" +WEB_SITE="http://www.slitaz.org/" +WGET_URL="http://wayland.freedesktop.org/releases/$TARBALL" + +DEPENDS="" +BUILD_DEPENDS="" + +# Rules to configure and make the package. +compile_rules() +{ + ./configure \ + --prefix=/usr \ + --disable-documentation && + make && make install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib $fs/usr/share + cp -a $install/usr/bin $fs/usr + cp -a $install/usr/lib/*.so* $fs/usr/lib + cp -a $install/usr/share/wayland $fs/usr/share +} +