wok view icewm/receipt @ rev 13429

partclone: add btrfs & hfsplus support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Oct 04 11:53:21 2012 +0200 (2012-10-04)
parents a0ef91b8d352
children fe747cfe0009
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 $CONFIGURE_ARGS &&
28 make &&
29 make DESTDIR=$PWD/_pkg install
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p $fs/usr/
36 cp -a $_pkg/usr/bin $fs/usr
37 cp -a $_pkg/usr/share $fs/usr
38 }