wok annotate perl-fuse/receipt @ rev 20113
netsurf-sdl, qedit, mupdf : add desktop files
author | Xander Ziiryanoff <psychomaniak@xakep.ru> |
---|---|
date | Thu Oct 12 11:08:12 2017 +0200 (2017-10-12) |
parents | 21c1edd6d6f8 |
children | 20661c276bcf |
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@14702 | 8 LICENSE="GPL" |
pascal@14283 | 9 SOURCE="Fuse" |
pascal@14283 | 10 TARBALL="$SOURCE-$VERSION.tar.gz" |
pascal@14283 | 11 WEB_SITE="http://cpan.org/" |
pascal@14283 | 12 WGET_URL="http://search.cpan.org/CPAN/authors/id/D/DP/DPAVLIN/$TARBALL" |
pascal@14283 | 13 |
pascal@14283 | 14 DEPENDS="perl fuse perl-filesys-statvfs perl-lchown perl-unix-mknod" |
pascal@14283 | 15 BUILD_DEPENDS="perl fuse-dev perl-filesys-statvfs perl-lchown perl-unix-mknod" |
pascal@14283 | 16 |
pascal@14283 | 17 # Rules to configure and make the package. |
pascal@14283 | 18 compile_rules() |
pascal@14283 | 19 { |
pascal@14283 | 20 cd $src |
pascal@14283 | 21 perl Makefile.PL && |
pascal@14283 | 22 make && |
pascal@14283 | 23 make DESTDIR=$DESTDIR install |
pascal@14283 | 24 } |
pascal@14283 | 25 |
pascal@14283 | 26 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@14283 | 27 genpkg_rules() |
pascal@14283 | 28 { |
pascal@14283 | 29 mkdir -p $fs/usr |
pascal@14283 | 30 cp -a $install/usr/lib $fs/usr |
pascal@14283 | 31 } |
pascal@14283 | 32 |