wok view pcmanfm/receipt @ rev 550

Up: osmo (0.2.0)
author Christophe Lincoln <pankso@slitaz.org>
date Sat Apr 12 20:17:59 2008 +0200 (2008-04-12)
parents 54b059c3da8e
children 9266fae1f9f9
line source
1 # SliTaz package receipt.
3 PACKAGE="pcmanfm"
4 VERSION="0.3.6.2"
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 --disable-hal \
22 $CONFIGURE_ARGS
23 make
24 make DESTDIR=$PWD/_pkg install
25 # Avoid update-mime-database or update-desktop-database error in 0.3.5*
26 echo "Avoid errors..."
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/share
33 cp -a $_pkg/usr/bin $fs/usr
34 cp -a $_pkg/usr/share/mime $fs/usr/share
35 cp -a $_pkg/usr/share/pcmanfm $fs/usr/share
36 }