wok view liferea/receipt @ rev 11879

quodlibet: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Feb 28 08:39:45 2012 +0100 (2012-02-28)
parents 6ec1b3691111
children 977fcec7f161
line source
1 # SliTaz package receipt.
3 PACKAGE="liferea"
4 VERSION="1.7.5"
5 CATEGORY="utilities"
6 SHORT_DESC="A download utility with resuming and segmented downloading with HTTP/HTTPS/FTP support"
7 MAINTAINER="devl547@gmail.com"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://liferea.sourceforge.net/"
10 WGET_URL="$SF_MIRROR/$PACKAGE/Liferea%20Unstable/$VERSION/$TARBALL"
12 DEPENDS="gtk+ glib pango GConf libunique libxml2 libxslt sqlite libsoup libwebkit libnotify intltool gnutls"
13 BUILD_DEPENDS="gtk+-dev glib-dev pango-dev GConf GConf-dev ORBit2-dev \
14 libunique-dev libxml2-dev libxslt-dev sqlite-dev libsoup-dev libwebkit-dev \
15 libnotify-dev gnutls-dev json-glib-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure $CONFIGURE_ARGS \
22 --enable-sm --disable-schemas-install --enable-libnotify &&
23 make &&
24 make install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/share/applications
31 mkdir $fs/usr/share/liferea
32 mkdir -p $fs/etc
33 cp -a $_pkg/usr/bin $fs/usr
34 cp -a $_pkg/usr/etc/gconf $fs/etc
35 cp -a $_pkg/usr/share/applications $fs/usr/share/
36 cp -a $_pkg/usr/share/icons $fs/usr/share/
37 cp -a $_pkg/usr/share/liferea $fs/usr/share/
38 }