wok view pcmanfm/receipt @ rev 798

pcmanfm: build with HAL support + new icon
author Christophe Lincoln <pankso@slitaz.org>
date Thu May 15 21:02:22 2008 +0200 (2008-05-15)
parents 2cfe9c053108
children e956e0b99306
line source
1 # SliTaz package receipt.
3 PACKAGE="pcmanfm"
4 VERSION="0.4.1.1"
5 CATEGORY="system-tools"
6 SHORT_DESC="Light and easy to use file manager."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="gtk+ xorg gamin startup-notification"
9 BUILD_DEPENDS="gtk+-dev gamin-dev startup-notification-dev shared-mime-info"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://pcmanfm.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 --mandir=/usr/share/man \
21 $CONFIGURE_ARGS
22 make
23 make DESTDIR=$PWD/_pkg install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/share
30 cp -a $_pkg/usr/bin $fs/usr
31 cp -a $_pkg/usr/share/mime $fs/usr/share
32 cp -a $_pkg/usr/share/pcmanfm $fs/usr/share
33 rm -rf $fs/usr/share/pcmanfm/icons
34 }