wok-next view notify-python/receipt @ rev 21727

created recipe for vbindiff
author Hans-G?nter Theisgen
date Sat Nov 21 14:32:44 2020 +0100 (2020-11-21)
parents d5aab818505e
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="notify-python"
4 VERSION="0.1.1"
5 CATEGORY="system-tools"
6 SHORT_DESC="Python binding to libnotify"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="LGPL2.1"
9 WEB_SITE="http://www.galago-project.org/news/index.php"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="http://www.galago-project.org/files/releases/source/notify-python/$TARBALL"
14 BUILD_DEPENDS="gfortran python-dev libnotify-dev python-pygtk-dev"
15 SPLIT="$PACKAGE-dev"
17 DEPENDS_std="gdk-pixbuf glib libnotify python python-pygtk"
19 TAGS_std="python"
21 compile_rules() {
22 # sed -i 's|, attach||; s| attach[^;]*||; /GtkWidget .attach/d' src/pynotify.c
24 ./configure $CONFIGURE_ARGS || return 1
26 fix libtool
28 # we touch src/pynotify.override in build because upstream did not rebuild
29 # pynotify.c from the input definitions, this forces pynotify.c to be
30 # regenerated, at some point this can be removed
31 touch src/pynotify.override
33 make clean &&
34 make &&
35 make -j1 install
36 }