wok annotate perl-fuse/receipt @ rev 14701

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