wok view icewm/receipt @ rev 9772

subversion: Fix BUILD_DEPENDS
author Christophe Lincoln <pankso@slitaz.org>
date Wed May 11 21:16:24 2011 +0200 (2011-05-11)
parents d4920bcee824
children b7319995b37e
line source
1 # SliTaz package receipt.
3 PACKAGE="icewm"
4 VERSION="1.3.7pre2"
5 CATEGORY="x-window"
6 SHORT_DESC="Ice Window Manager with Themes"
7 MAINTAINER="devl547@gmail.com"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://www.icewm.org/"
10 WGET_URL="$SF_MIRROR/icewm/icewm-1.3/1.3.7pre2/$TARBALL"
11 BUILD_DEPENDS="xorg-libX11-dev xorg-libXrandr-dev xorg-libXext-dev \
12 xorg-libXpm-dev xorg-libXrender-dev xorg-libXft xorg-libXft-dev xorg-libSM-dev \
13 xorg-libICE-dev xorg-libXrandr-dev imlib-dev freetype-dev giflib-dev \
14 xorg-libXinerama xorg-libXinerama-dev \
15 xorg-xproto xorg-xextproto xorg-randrproto fontconfig-dev gettext \
16 gdk-pixbuf-dev pkg-config"
17 DEPENDS="xorg-libX11 xorg-libXrandr xorg-libXext xorg-libXpm \
18 xorg-libXrender xorg-libXft xorg-libSM xorg-libICE imlib freetype \
19 gdk-pixbuf giflib gettext"
21 # Rules to configure and make the package.
22 compile_rules()
23 {
24 cd $src
25 ./configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib/icewm \
26 --localstatedir=/var --mandir=/usr/share/man --disable-i18n &&
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/
35 cp -a $_pkg/usr/bin $fs/usr
36 cp -a $_pkg/usr/share $fs/usr
37 }