wok view liferea/receipt @ rev 7674

Fixed linux. Need to make folder PWD/_pkg before adding bzImage to it. Also i'm force copying kernel config file now so we have the right config. It is copyed twice so its needed and doesn't hunt anything i think.
author Christopher Rogers <slaxemulator@gmail.com>
date Thu Dec 16 17:16:06 2010 +0000 (2010-12-16)
parents c2f14c5b6d30
children b1f81941f347
line source
1 # SliTaz package receipt.
3 PACKAGE="liferea"
4 VERSION="1.7.4"
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="http://downloads.sourceforge.net/project/liferea/Liferea%20Unstable/$VERSION/$TARBALL"
11 BUILD_DEPENDS="gtk+-dev glib-dev pango-dev GConf GConf-dev ORBit2-dev libunique-dev libxml2-dev libxslt-dev sqlite-dev libsoup-dev libwebkit-dev libnotify-dev gnutls-dev"
12 DEPENDS="gtk+ glib pango GConf libunique libxml2 libxslt sqlite libsoup libwebkit libnotify intltool gnutls"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure --prefix=/usr --infodir=/usr/share/info \
19 --mandir=/usr/share/man $CONFIGURE_ARGS \
20 --enable-sm --disable-schemas-install --enable-libnotify &&
21 make -j4 &&
22 make DESTDIR=$PWD/_pkg install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/share/applications
29 mkdir $fs/usr/share/liferea
30 mkdir -p $fs/etc
31 cp -a $_pkg/usr/bin $fs/usr
32 cp -a $_pkg/usr/etc $fs/etc
33 cp -a $_pkg/usr/share/applications $fs/usr/share/
34 cp -a $_pkg/usr/share/icons $fs/usr/share/
35 cp -a $_pkg/usr/share/liferea $fs/usr/share/
36 }