wok-current view conky/receipt @ rev 6928
Up: elfutils to 0.149. Fixed it to build in clean chroot. Fixed it also to download sources with real wget by since sources are on https host. So now elfutils can download its sources just fine.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Fri Oct 22 22:36:22 2010 +0000 (2010-10-22) |
parents | 46ac0c9b6b7c |
children | d8ff3547600c |
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-dev 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 }