wok-current rev 18321
Add xsshfs
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Tue Sep 01 12:21:38 2015 +0200 (2015-09-01) |
parents | daad21b281dd |
children | 32602ffb2d72 |
files | perl-config-tiny/receipt perl-image-librsvg/receipt sshfs-fuse/receipt xsshfs/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/perl-config-tiny/receipt Tue Sep 01 12:21:38 2015 +0200 1.3 @@ -0,0 +1,28 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="perl-config-tiny" 1.7 +VERSION="2.22" 1.8 +CATEGORY="development" 1.9 +SHORT_DESC="Config::Tiny module is a Perl extension." 1.10 +MAINTAINER="pascal.bellard@slitaz.org" 1.11 +DEPENDS="perl" 1.12 +BUILD_DEPENDS="perl" 1.13 +SOURCE="Config-Tiny" 1.14 +TARBALL="$SOURCE-$VERSION.tgz" 1.15 +WEB_SITE="http://cpan.org/" 1.16 +WGET_URL="http://search.cpan.org/CPAN/authors/id/R/RS/RSAVAGE/$TARBALL" 1.17 + 1.18 +# Rules to configure and make the package. 1.19 +compile_rules() 1.20 +{ 1.21 + perl Makefile.PL && 1.22 + make && 1.23 + make install DESTDIR=$DESTDIR 1.24 +} 1.25 + 1.26 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.27 +genpkg_rules() 1.28 +{ 1.29 + mkdir -p $fs/usr 1.30 + cp -a $install/usr/lib $fs/usr 1.31 +}
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/perl-image-librsvg/receipt Tue Sep 01 12:21:38 2015 +0200 2.3 @@ -0,0 +1,31 @@ 2.4 +# SliTaz package receipt. 2.5 + 2.6 +PACKAGE="perl-image-librsvg" 2.7 +VERSION="0.07" 2.8 +CATEGORY="development" 2.9 +SHORT_DESC="Image::LibRSVG module is a Perl extension." 2.10 +MAINTAINER="pascal.bellard@slitaz.org" 2.11 +DEPENDS="perl" 2.12 +BUILD_DEPENDS="perl" 2.13 +SOURCE="Image-LibRSVG" 2.14 +TARBALL="$SOURCE-$VERSION.tar.gz" 2.15 +WEB_SITE="https://metacpan.org/release/Image-LibRSVG" 2.16 +WGET_URL="https://cpan.metacpan.org/authors/id/T/TO/TOMSON/$TARBALL" 2.17 + 2.18 +DEPENDS="librsvg" 2.19 +BUILD_DEPENDS="wget librsvg-dev" 2.20 + 2.21 +# Rules to configure and make the package. 2.22 +compile_rules() 2.23 +{ 2.24 + perl Makefile.PL && 2.25 + make && 2.26 + make install DESTDIR=$DESTDIR 2.27 +} 2.28 + 2.29 +# Rules to gen a SliTaz package suitable for Tazpkg. 2.30 +genpkg_rules() 2.31 +{ 2.32 + mkdir -p $fs/usr 2.33 + cp -a $install/usr/lib $fs/usr 2.34 +}
3.1 --- a/sshfs-fuse/receipt Sun Aug 30 11:20:28 2015 +0200 3.2 +++ b/sshfs-fuse/receipt Tue Sep 01 12:21:38 2015 +0200 3.3 @@ -13,7 +13,7 @@ 3.4 PROVIDE="rsshfs sshfs" 3.5 TAGS="ssh" 3.6 3.7 -DEPENDS="fuse openssh glib" 3.8 +DEPENDS="fuse openssh sftp-server glib" 3.9 BUILD_DEPENDS="fuse-dev gettext glib-dev pkg-config" 3.10 3.11 # Rules to configure and make the package.
4.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 4.2 +++ b/xsshfs/receipt Tue Sep 01 12:21:38 2015 +0200 4.3 @@ -0,0 +1,23 @@ 4.4 +# SliTaz package receipt. 4.5 + 4.6 +PACKAGE="xsshfs" 4.7 +VERSION="0.5" 4.8 +CATEGORY="network" 4.9 +SHORT_DESC="GUI for sshfs." 4.10 +MAINTAINER="pascal.bellard@slitaz.org" 4.11 +LICENSE="GPL2" 4.12 +TARBALL="${PACKAGE}_$VERSION-all_src.tar.gz" 4.13 +WEB_SITE="http://forge.zici.fr/p/xsshfs/" 4.14 +WGET_URL="${WEB_SITE}downloads/get/$TARBALL" 4.15 + 4.16 +DEPENDS="sshfs perl-config-tiny perl-locale-gettext glade-perl perl-image-librsvg" 4.17 +SUGGESTED="pcmanfm" 4.18 + 4.19 +# Rules to gen a SliTaz package suitable for Tazpkg. 4.20 +genpkg_rules() 4.21 +{ 4.22 + cp -a $src/usr $fs/ 4.23 + sed -i 's|/bin/bash|/bin/sh|' $fs/usr/bin/xsshfs 4.24 + sed -i "s|"/bin/fusermount|"/usr&|' $fs/usr/share/xsshfs/xsshfs.pm 4.25 + sed -i "s|xdg-open|pcmanfm|' $fs/usr/share/xsshfs/xsshfs.pm 4.26 +}