wok view python-notify/receipt @ rev 8187

imported patch toolchain/glibc-extra-samba.patch
author Antoine Bodin <gokhlayeh@slitaz.org>
date Thu Jan 27 00:20:50 2011 +0100 (2011-01-27)
parents
children 79deaee814c4
line source
1 # SliTaz package receipt.
3 PACKAGE="python-notify"
4 VERSION="0.1.1"
5 CATEGORY="development"
6 SHORT_DESC="Python bindings for libnotify."
7 MAINTAINER="slaxemulator@gmail.com"
8 DEPENDS="libnotify pygtk"
9 BUILD_DEPENDS="libnotify-dev pygtk-dev python-dev pkg-config"
10 SOURCE="notify-python"
11 TARBALL="$SOURCE-$VERSION.tar.gz"
12 WEB_SITE="http://www.galago-project.org/"
13 WGET_URL="http://www.galago-project.org/files/releases/source/$SOURCE/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr \
21 --infodir=/usr/share/info \
22 --mandir=/usr/share/man \
23 $CONFIGURE_ARGS &&
24 make && make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 cp -a $_pkg/usr $fs
31 }