wok annotate wayland/receipt @ 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
children f383764f3956
rev   line source
pankso@16163 1 # SliTaz package receipt.
pankso@16163 2
pankso@16163 3 PACKAGE="wayland"
pankso@16163 4 VERSION="1.4.0"
pankso@16163 5 CATEGORY="x-window"
pankso@16163 6 SHORT_DESC="Wayland simpler X display server protocol."
pankso@16163 7 MAINTAINER="pankso@slitaz.org"
pankso@16163 8 LICENSE="MIT"
pankso@16163 9 TARBALL="$PACKAGE-$VERSION.tar.xz"
pankso@16163 10 WEB_SITE="http://www.slitaz.org/"
pankso@16163 11 WGET_URL="http://wayland.freedesktop.org/releases/$TARBALL"
pankso@16163 12
pankso@16163 13 DEPENDS=""
pankso@16163 14 BUILD_DEPENDS=""
pankso@16163 15
pankso@16163 16 # Rules to configure and make the package.
pankso@16163 17 compile_rules()
pankso@16163 18 {
pankso@16163 19 ./configure \
pankso@16163 20 --prefix=/usr \
pankso@16163 21 --disable-documentation &&
pankso@16163 22 make && make install
pankso@16163 23 }
pankso@16163 24
pankso@16163 25 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@16163 26 genpkg_rules()
pankso@16163 27 {
pankso@16163 28 mkdir -p $fs/usr/lib $fs/usr/share
pankso@16163 29 cp -a $install/usr/bin $fs/usr
pankso@16163 30 cp -a $install/usr/lib/*.so* $fs/usr/lib
pankso@16163 31 cp -a $install/usr/share/wayland $fs/usr/share
pankso@16163 32 }
pankso@16163 33