# HG changeset patch # User Christopher Rogers # Date 1290577038 0 # Node ID 1a14293263059738a45ce26e8d4de060d7deb60b # Parent b0ac2878772c8f0cf720b36116b08c6a27e68e2e Add python-notify. Python bindings for libnotify. Needed for miro. diff -r b0ac2878772c -r 1a1429326305 python-notify/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/python-notify/receipt Wed Nov 24 05:37:18 2010 +0000 @@ -0,0 +1,32 @@ +# SliTaz package receipt. + +PACKAGE="python-notify" +VERSION="0.1.1" +CATEGORY="development" +SHORT_DESC="Python bindings for libnotify." +MAINTAINER="slaxemulator@gmail.com" +DEPENDS="libnotify pygtk" +BUILD_DEPENDS="libnotify-dev pygtk-dev python-dev pkg-config" +SOURCE="notify-python" +TARBALL="$SOURCE-$VERSION.tar.gz" +WEB_SITE="http://www.galago-project.org/" +WGET_URL="http://www.galago-project.org/files/releases/source/$SOURCE/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man \ + $CONFIGURE_ARGS && + make && make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cp -a $_pkg/usr $fs +} +