# HG changeset patch # User Pascal Bellard # Date 1441102898 -7200 # Node ID 442615e1f82c6c88edcdc2f84309ffe5f7bc1a13 # Parent daad21b281dd8be2f3585b8bab8d09e616015c54 Add xsshfs diff -r daad21b281dd -r 442615e1f82c perl-config-tiny/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/perl-config-tiny/receipt Tue Sep 01 12:21:38 2015 +0200 @@ -0,0 +1,28 @@ +# SliTaz package receipt. + +PACKAGE="perl-config-tiny" +VERSION="2.22" +CATEGORY="development" +SHORT_DESC="Config::Tiny module is a Perl extension." +MAINTAINER="pascal.bellard@slitaz.org" +DEPENDS="perl" +BUILD_DEPENDS="perl" +SOURCE="Config-Tiny" +TARBALL="$SOURCE-$VERSION.tgz" +WEB_SITE="http://cpan.org/" +WGET_URL="http://search.cpan.org/CPAN/authors/id/R/RS/RSAVAGE/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + perl Makefile.PL && + make && + make install DESTDIR=$DESTDIR +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr + cp -a $install/usr/lib $fs/usr +} diff -r daad21b281dd -r 442615e1f82c perl-image-librsvg/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/perl-image-librsvg/receipt Tue Sep 01 12:21:38 2015 +0200 @@ -0,0 +1,31 @@ +# SliTaz package receipt. + +PACKAGE="perl-image-librsvg" +VERSION="0.07" +CATEGORY="development" +SHORT_DESC="Image::LibRSVG module is a Perl extension." +MAINTAINER="pascal.bellard@slitaz.org" +DEPENDS="perl" +BUILD_DEPENDS="perl" +SOURCE="Image-LibRSVG" +TARBALL="$SOURCE-$VERSION.tar.gz" +WEB_SITE="https://metacpan.org/release/Image-LibRSVG" +WGET_URL="https://cpan.metacpan.org/authors/id/T/TO/TOMSON/$TARBALL" + +DEPENDS="librsvg" +BUILD_DEPENDS="wget librsvg-dev" + +# Rules to configure and make the package. +compile_rules() +{ + perl Makefile.PL && + make && + make install DESTDIR=$DESTDIR +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr + cp -a $install/usr/lib $fs/usr +} diff -r daad21b281dd -r 442615e1f82c sshfs-fuse/receipt --- a/sshfs-fuse/receipt Sun Aug 30 11:20:28 2015 +0200 +++ b/sshfs-fuse/receipt Tue Sep 01 12:21:38 2015 +0200 @@ -13,7 +13,7 @@ PROVIDE="rsshfs sshfs" TAGS="ssh" -DEPENDS="fuse openssh glib" +DEPENDS="fuse openssh sftp-server glib" BUILD_DEPENDS="fuse-dev gettext glib-dev pkg-config" # Rules to configure and make the package. diff -r daad21b281dd -r 442615e1f82c xsshfs/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/xsshfs/receipt Tue Sep 01 12:21:38 2015 +0200 @@ -0,0 +1,23 @@ +# SliTaz package receipt. + +PACKAGE="xsshfs" +VERSION="0.5" +CATEGORY="network" +SHORT_DESC="GUI for sshfs." +MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="GPL2" +TARBALL="${PACKAGE}_$VERSION-all_src.tar.gz" +WEB_SITE="http://forge.zici.fr/p/xsshfs/" +WGET_URL="${WEB_SITE}downloads/get/$TARBALL" + +DEPENDS="sshfs perl-config-tiny perl-locale-gettext glade-perl perl-image-librsvg" +SUGGESTED="pcmanfm" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cp -a $src/usr $fs/ + sed -i 's|/bin/bash|/bin/sh|' $fs/usr/bin/xsshfs + sed -i "s|"/bin/fusermount|"/usr&|' $fs/usr/share/xsshfs/xsshfs.pm + sed -i "s|xdg-open|pcmanfm|' $fs/usr/share/xsshfs/xsshfs.pm +}