wok view liferea/receipt @ rev 15857

Up: audacious to 3.4.3.
author Christopher Rogers <slaxemulator@gmail.com>
date Wed Jan 29 20:09:33 2014 +0000 (2014-01-29)
parents 977fcec7f161
children c00427f1c134
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 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 install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/share/applications
34 mkdir $fs/usr/share/liferea
35 mkdir -p $fs/etc
36 cp -a $install/usr/bin $fs/usr
37 cp -a $install/usr/etc/gconf $fs/etc
38 cp -a $install/usr/share/applications $fs/usr/share/
39 cp -a $install/usr/share/icons $fs/usr/share/
40 cp -a $install/usr/share/liferea $fs/usr/share/
41 for locale in $LOCALES; do
42 cp -a $install/usr/share/locale/$locale $fs/usr/share/locale
43 done
45 }