wok view conky/receipt @ rev 9417

Up: vim, vim-tiny and gvim to 7.3, fixed vimrc path, linked libraries and build depends
author Manuel Flores Vivas <manuelfloresv@gmail.com>
date Wed Mar 30 01:13:57 2011 +0000 (2011-03-30)
parents 19b0d2c1ef6f
children a1644dbcf632
line source
1 # SliTaz package receipt.
3 PACKAGE="conky"
4 VERSION="1.8.1"
5 CATEGORY="system-tools"
6 SHORT_DESC="Simple and very light system monitor."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="expat fontconfig freetype glib xorg-libX11 xorg-libXau \
9 xorg-libXdamage xorg-libXdmcp xorg-libXext xorg-libXfixes \
10 xorg-libXft xorg-libXrender zlib ncursesw"
11 BUILD_DEPENDS="$DEPENDS xorg-libXdamage-dev xorg-libXft-dev fontconfig-dev expat-dev glib glib-dev pkg-config zlib-dev freetype-dev xorg-xextproto xorg-damageproto xorg-fixesproto ncursesw-dev"
12 TARBALL="$PACKAGE-$VERSION.tar.bz2"
13 WEB_SITE="http://conky.sourceforge.net/"
14 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
15 TAGS="desktop monitoring"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure \
22 --prefix=/usr \
23 --sysconfdir=/etc \
24 --mandir=/usr/share/man \
25 --disable-lua \
26 $CONFIGURE_ARGS &&
27 make &&
28 make DESTDIR=$PWD/_pkg install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr $fs/etc/conky
35 cp -a $_pkg/usr/bin $fs/usr
36 cp -a stuff/conky.conf $fs/etc/conky
37 }