wok view startup-notification/receipt @ rev 15919

openbox: depends on xorg-libXcursor (fix no X in justx flavor)
author Christophe Lincoln <pankso@slitaz.org>
date Tue Feb 18 17:43:11 2014 +0100 (2014-02-18)
parents 73641efed1cc
children 1204cf352c74
line source
1 # SliTaz package receipt.
3 PACKAGE="startup-notification"
4 VERSION="0.12"
5 CATEGORY="x-window"
6 SHORT_DESC="Startup notification protocol"
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="LGPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://freedesktop.org/software/startup-notification/releases/"
11 WGET_URL="http://freedesktop.org/software/startup-notification/releases/$TARBALL"
12 CROSS="error: cannot run test program while cross compiling"
14 DEPENDS="util-linux-uuid libxcb xcb-util xorg-libICE xorg-libSM xorg-libX11 \
15 xorg-libXau xorg-libXdmcp"
16 BUILD_DEPENDS="util-linux-uuid-dev libxcb-dev xcb-util-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 cd $src
22 ./configure -C \
23 --prefix=/usr \
24 --build=$HOST_SYSTEM \
25 --host=$HOST_SYSTEM &&
26 make && make install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/lib
33 cp -a $install/usr/lib/*.so* $fs/usr/lib
34 }