wok view perl-fuse/receipt @ rev 14283

Add perl-fuse
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Apr 06 15:49:36 2013 +0200 (2013-04-06)
parents
children 2d12ebd38be4
line source
1 # SliTaz package receipt.
3 PACKAGE="perl-fuse"
4 VERSION="0.14"
5 CATEGORY="development"
6 SHORT_DESC="Fuse module is a Perl extension."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 SOURCE="Fuse"
9 TARBALL="$SOURCE-$VERSION.tar.gz"
10 WEB_SITE="http://cpan.org/"
11 WGET_URL="http://search.cpan.org/CPAN/authors/id/D/DP/DPAVLIN/$TARBALL"
13 DEPENDS="perl fuse perl-filesys-statvfs perl-lchown perl-unix-mknod"
14 BUILD_DEPENDS="perl fuse-dev perl-filesys-statvfs perl-lchown perl-unix-mknod"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 perl Makefile.PL &&
21 make &&
22 make DESTDIR=$DESTDIR install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr
29 cp -a $install/usr/lib $fs/usr
30 }