wok view pcmanfm/receipt @ rev 1820

Split ndiswrapper.
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Fri Dec 05 23:08:55 2008 +0100 (2008-12-05)
parents 761cb72114b3
children f9c021d9b2fc
line source
1 # SliTaz package receipt.
3 PACKAGE="pcmanfm"
4 VERSION="0.5"
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
10 shared-mime-info intltool hal-dev dbus-glib-dev dbus-dev"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WEB_SITE="http://pcmanfm.sourceforge.net/"
13 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr \
21 --mandir=/usr/share/man \
22 $CONFIGURE_ARGS
23 make
24 make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/share
31 cp -a $_pkg/usr/bin $fs/usr
32 cp -a $_pkg/usr/share/mime $fs/usr/share
33 cp -a $_pkg/usr/share/pcmanfm $fs/usr/share
34 rm -rf $fs/usr/share/pcmanfm/icons
35 }