wok view conky/receipt @ rev 2343

mirror-tools: add pxe config
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Mar 03 19:40:59 2009 +0000 (2009-03-03)
parents 2a0038b01ed7
children 71ac043c8879
line source
1 # SliTaz package receipt.
3 PACKAGE="conky"
4 VERSION="1.5.1"
5 CATEGORY="system-tools"
6 SHORT_DESC="Simple and very light system monitor."
7 MAINTAINER="pankso@slitaz.org"
8 BUILD_DEPENDS="xorg-libXdamage"
9 BUILD_DEPENDS="xorg-dev xorg-libXdamage-dev xorg-libXft-dev glib glib-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://conky.sourceforge.net/"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --prefix=/usr \
20 --sysconfdir=/etc \
21 --mandir=/usr/share/man \
22 $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr $fs/etc/conky
31 cp -a $_pkg/usr/bin $fs/usr
32 cp -a stuff/conky.conf $fs/etc/conky
33 }