wok rev 16163
Add Wayland server (This is our futur :-)
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Sat Mar 29 04:05:10 2014 +0100 (2014-03-29) |
parents | 1204cf352c74 |
children | f383764f3956 |
files | wayland-dev/receipt wayland/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/wayland-dev/receipt Sat Mar 29 04:05:10 2014 +0100 1.3 @@ -0,0 +1,23 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="wayland-dev" 1.7 +VERSION="1.4.0" 1.8 +CATEGORY="development" 1.9 +SHORT_DESC="Wayland X server devel files." 1.10 +MAINTAINER="pankso@slitaz.org" 1.11 +LICENSE="MIT" 1.12 +WANTED="wayland" 1.13 +WEB_SITE="http://www.bluez.org/" 1.14 + 1.15 +DEPENDS="" 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/lib $fs/usr/share 1.21 + cp -a $install/usr/include $fs/usr 1.22 + cp -a $install/usr/lib/*.*a $fs/usr/lib 1.23 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.24 + cp -a $install/usr/share/pkgconfig/* $fs/usr/lib/pkgconfig 1.25 + cp -a $install/usr/share/aclocal $fs/usr/share 1.26 +}
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/wayland/receipt Sat Mar 29 04:05:10 2014 +0100 2.3 @@ -0,0 +1,33 @@ 2.4 +# SliTaz package receipt. 2.5 + 2.6 +PACKAGE="wayland" 2.7 +VERSION="1.4.0" 2.8 +CATEGORY="x-window" 2.9 +SHORT_DESC="Wayland simpler X display server protocol." 2.10 +MAINTAINER="pankso@slitaz.org" 2.11 +LICENSE="MIT" 2.12 +TARBALL="$PACKAGE-$VERSION.tar.xz" 2.13 +WEB_SITE="http://www.slitaz.org/" 2.14 +WGET_URL="http://wayland.freedesktop.org/releases/$TARBALL" 2.15 + 2.16 +DEPENDS="" 2.17 +BUILD_DEPENDS="" 2.18 + 2.19 +# Rules to configure and make the package. 2.20 +compile_rules() 2.21 +{ 2.22 + ./configure \ 2.23 + --prefix=/usr \ 2.24 + --disable-documentation && 2.25 + make && make 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/lib $fs/usr/share 2.32 + cp -a $install/usr/bin $fs/usr 2.33 + cp -a $install/usr/lib/*.so* $fs/usr/lib 2.34 + cp -a $install/usr/share/wayland $fs/usr/share 2.35 +} 2.36 +