wok view liferea/receipt @ rev 14157

Up: nspr-dev (4.9.4)
author Dominique Corbex <domcox@slitaz.org>
date Tue Mar 05 22:39:47 2013 +0100 (2013-03-05)
parents 7afe8aca37e3
children 7896f0694ef6
line source
1 # SliTaz package receipt.
3 PACKAGE="liferea"
4 VERSION="1.8.12"
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.bz2"
9 WEB_SITE="http://liferea.sourceforge.net/"
10 WGET_URL="$SF_MIRROR/project/$PACKAGE/Liferea%20Stable/$VERSION/$TARBALL"
12 DEPENDS="gtk+ glib pango GConf libunique libxml2 libxslt sqlite libsoup libwebkit libnotify intltool gnutls json-glib"
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 LOCALES="da de es fr it pt_BR ru zh_CN"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 cd $src
23 ./configure $CONFIGURE_ARGS \
24 --enable-sm --disable-schemas-install --enable-libnotify &&
25 make &&
26 make install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/share/applications
33 mkdir $fs/usr/share/liferea
34 mkdir -p $fs/etc
35 cp -a $_pkg/usr/bin $fs/usr
36 cp -a $_pkg/usr/etc/gconf $fs/etc
37 cp -a $_pkg/usr/share/applications $fs/usr/share/
38 cp -a $_pkg/usr/share/icons $fs/usr/share/
39 cp -a $_pkg/usr/share/liferea $fs/usr/share/
40 for locale in $LOCALES; do
41 cp -a $install/usr/share/locale/$locale $fs/usr/share/locale
42 done
44 }