# HG changeset patch # User Christophe Lincoln # Date 1254343568 -7200 # Node ID f25b70156910caafcb54157771dfd43bb6f58dc8 # Parent f7de826b263ebaf4bc6a774127daecaa5c52344f Add: notify-python (Python binding to libnotify) diff -r f7de826b263e -r f25b70156910 notify-python/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/notify-python/receipt Wed Sep 30 22:46:08 2009 +0200 @@ -0,0 +1,31 @@ +# SliTaz package receipt. + +PACKAGE="notify-python" +VERSION="0.1.1" +CATEGORY="system-tools" +SHORT_DESC="Python binding to libnotify" +MAINTAINER="pankso@slitaz.org" +DEPENDS="python libnotify" +BUILD_DEPENDS="python-dev libnotify-dev" +TARBALL="$PACKAGE-$VERSION.tar.bz2" +WEB_SITE="http://www.galago-project.org/" +WGET_URL="http://www.galago-project.org/files/releases/source/notify-python/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure \ + --prefix=/usr \ + $CONFIGURE_ARGS && + make && + make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr + cp -a $_pkg/usr/lib $fs/usr + cp -a $_pkg/usr/share $fs/usr +}