wok view startup-notification/receipt @ rev 5053

fix typos: libgphoto2
author Rohit Joshi <jozee@slitaz.org>
date Sat Mar 06 18:51:17 2010 +0000 (2010-03-06)
parents 50f8bc475b17
children b653f4458390
line source
1 # SliTaz package receipt.
3 PACKAGE="startup-notification"
4 VERSION="0.10"
5 CATEGORY="x-window"
6 SHORT_DESC="Startup notification protocol"
7 MAINTAINER="erjo@slitaz.org"
8 DEPENDS="glibc-base util-linux-ng-uuid libxcb xcb-util xorg-libICE xorg-libSM \
9 xorg-libX11 xorg-libXau xorg-libXdmcp"
10 BUILD_DEPENDS="xorg-dev"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WEB_SITE="http://freedesktop.org/software/startup-notification/releases/"
13 WGET_URL="http://freedesktop.org/software/startup-notification/releases/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure -C --prefix=/usr $CONFIGURE_ARGS &&
20 make &&
21 make DESTDIR=$PWD/_pkg install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib
28 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
29 strip -s $fs/usr/lib/*.so*
30 }