wok annotate startup-notification/receipt @ rev 15280

cinepaint: remove a wrong error trigger (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Sep 26 13:12:43 2013 +0000 (2013-09-26)
parents 73641efed1cc
children 1204cf352c74
rev   line source
erjo@252 1 # SliTaz package receipt.
erjo@252 2
erjo@252 3 PACKAGE="startup-notification"
samuel_trassare@11874 4 VERSION="0.12"
pankso@271 5 CATEGORY="x-window"
erjo@252 6 SHORT_DESC="Startup notification protocol"
erjo@784 7 MAINTAINER="erjo@slitaz.org"
pascal@15004 8 LICENSE="LGPL2"
erjo@252 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
erjo@252 10 WEB_SITE="http://freedesktop.org/software/startup-notification/releases/"
erjo@252 11 WGET_URL="http://freedesktop.org/software/startup-notification/releases/$TARBALL"
pankso@10390 12 CROSS="error: cannot run test program while cross compiling"
erjo@252 13
pankso@12481 14 DEPENDS="util-linux-uuid libxcb xcb-util xorg-libICE xorg-libSM xorg-libX11 \
pankso@9792 15 xorg-libXau xorg-libXdmcp"
pankso@12481 16 BUILD_DEPENDS="util-linux-uuid-dev libxcb-dev xcb-util-dev"
pankso@9792 17
erjo@252 18 # Rules to configure and make the package.
erjo@252 19 compile_rules()
erjo@252 20 {
erjo@252 21 cd $src
pankso@10390 22 ./configure -C \
pankso@10390 23 --prefix=/usr \
pankso@10390 24 --build=$HOST_SYSTEM \
pankso@10390 25 --host=$HOST_SYSTEM &&
pankso@9792 26 make && make install
erjo@252 27 }
erjo@252 28
erjo@252 29 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@252 30 genpkg_rules()
erjo@252 31 {
erjo@252 32 mkdir -p $fs/usr/lib
pascal@15004 33 cp -a $install/usr/lib/*.so* $fs/usr/lib
erjo@252 34 }
erjo@252 35