wok view liferea/receipt @ rev 16600

get-skype: create /var/lib/dbus/machine-id, thanks yves04
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed May 07 14:16:51 2014 +0000 (2014-05-07)
parents 7896f0694ef6
children 4ec0694bfc21
line source
1 # SliTaz package receipt.
3 PACKAGE="liferea"
4 VERSION="1.8.15"
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 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://liferea.sourceforge.net/"
11 WGET_URL="$SF_MIRROR/project/$PACKAGE/Liferea%20Stable/$VERSION/$TARBALL"
13 DEPENDS="gtk+ glib pango GConf libunique libxml2 libxslt sqlite libsoup libwebkit libnotify intltool gnutls json-glib"
14 BUILD_DEPENDS="gtk+-dev glib-dev pango-dev GConf GConf-dev ORBit2-dev \
15 libunique-dev libxml2-dev libxslt-dev sqlite-dev libsoup-dev libwebkit-dev \
16 libnotify-dev gnutls-dev json-glib-dev"
18 LOCALES="da de es fr it pt_BR ru zh_CN"
20 # Rules to configure and make the package.
21 compile_rules()
22 {
23 cd $src
24 ./configure $CONFIGURE_ARGS \
25 --enable-sm --disable-schemas-install --enable-libnotify &&
26 make &&
27 make DESTDIR=$DESTDIR install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/share/
34 mkdir -p $fs/etc
35 cp -a $install/usr/bin $fs/usr
36 cp -a $install/usr/etc/gconf $fs/etc
37 cp -a $install/usr/share/applications $fs/usr/share/
38 cp -a $install/usr/share/icons $fs/usr/share/
39 cp -a $install/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 }