wok view pidgin-libnotify/receipt @ rev 25460

Update sourceforge.net web_sites with https://
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Sep 28 08:10:35 2022 +0000 (19 months ago)
parents 370da83187ab
children 65ff25c4de90
line source
1 # SliTaz package receipt.
3 PACKAGE="pidgin-libnotify"
4 VERSION="0.14"
5 CATEGORY="network"
6 SHORT_DESC="Notification interface for Pidgin."
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="GPL3"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="https://gaim-libnotify.sourceforge.net/"
11 WGET_URL="http://downloads.sourceforge.net/project/gaim-libnotify/$PACKAGE/$PACKAGE-$VERSION/$TARBALL"
13 DEPENDS="pidgin libnotify"
14 BUILD_DEPENDS="intltool libpurple-dev libnotify-dev pidgin-dev libffi gtk+-dev"
16 # What is the latest version available today?
17 current_version()
18 {
19 wget -O - https://sourceforge.net/projects/gaim-libnotify/files/pidgin-libnotify/ 2>/dev/null | \
20 sed '/scope="row/!d;s|.*href="|"https://sourceforge.net|;q' | xargs wget -O - 2>/dev/null | \
21 sed '/scope="row/!d;s|.*/pidgin-libnotify/pidgin-libnotify-||;s|/.*||;q'
22 }
24 # Rules to configure and make the package.
25 compile_rules()
26 {
27 sed -i '/notify_notification_new/s/, NULL,/,/' src/pidgin-libnotify.c
28 ./configure $CONFIGURE_ARGS && make && make install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr/lib/purple-2
35 cp -a $install/usr/lib/purple-2/*.so $fs/usr/lib/purple-2
36 }