wok view python-notify/receipt @ rev 7368

Add python-notify. Python bindings for libnotify. Needed for miro.
author Christopher Rogers <slaxemulator@gmail.com>
date Wed Nov 24 05:37:18 2010 +0000 (2010-11-24)
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 }