wok rev 460
ADD: Xarchive, fuseiso, curlftpfs
author | Eric Joseph-Alexandre <erjo@slitaz.org> |
---|---|
date | Thu Mar 20 00:22:38 2008 +0100 (2008-03-20) |
parents | 067898ce34ec |
children | b76786e9d10d |
files | curlftpfs/receipt fuseiso/receipt xarchive/receipt xarchive/stuff/tar-wrap.patch xarchive/stuff/xarchive.desktop |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/curlftpfs/receipt Thu Mar 20 00:22:38 2008 +0100 1.3 @@ -0,0 +1,30 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="curlftpfs" 1.7 +VERSION="0.9.1" 1.8 +CATEGORY="system-tools" 1.9 +SHORT_DESC="Using FUSE to access FTP servers." 1.10 +MAINTAINER="Erjo <erjo@slitaz.org>" 1.11 +DEPENDS="fuse curl" 1.12 +BUILD_DEPENDS="fuse fuse-dev curl curl-dev" 1.13 +TARBALL="$PACKAGE-$VERSION.tar.gz" 1.14 +WEB_SITE="http://curlftpfs.sourceforge.net/" 1.15 +WGET_URL="http://downloads.sourceforge.net/curlftpfs/$TARBALL" 1.16 + 1.17 +# Rules to configure and make the package. 1.18 +compile_rules() 1.19 +{ 1.20 + cd $src 1.21 + ./configure --prefix=/usr $CONFIGURE_ARGS 1.22 + make 1.23 + make DESTDIR=$PWD/_pkg install 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 $_pkg/usr/bin $fs/usr 1.31 + strip -s $fs/usr/bin/* 1.32 +} 1.33 +
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/fuseiso/receipt Thu Mar 20 00:22:38 2008 +0100 2.3 @@ -0,0 +1,30 @@ 2.4 +# SliTaz package receipt. 2.5 + 2.6 +PACKAGE="fuseiso" 2.7 +VERSION="20070708" 2.8 +CATEGORY="system-tools" 2.9 +SHORT_DESC="Using FUSE to mount ISO filesystem" 2.10 +MAINTAINER="Erjo <erjo@slitaz.org>" 2.11 +DEPENDS="fuse" 2.12 +BUILD_DEPENDS="fuse fuse-dev" 2.13 +TARBALL="$PACKAGE-$VERSION.tar.bz2" 2.14 +WEB_SITE="http://fuse.sourceforge.net/wiki/index.php/FuseIso" 2.15 +WGET_URL="http://ubiz.ru/dm/$TARBALL" 2.16 + 2.17 +# Rules to configure and make the package. 2.18 +compile_rules() 2.19 +{ 2.20 + cd $src 2.21 + ./configure --prefix=/usr $CONFIGURE_ARGS 2.22 + make 2.23 + make DESTDIR=$PWD/_pkg install 2.24 +} 2.25 + 2.26 +# Rules to gen a SliTaz package suitable for Tazpkg. 2.27 +genpkg_rules() 2.28 +{ 2.29 + mkdir -p $fs/usr 2.30 + cp -a $_pkg/usr/bin $fs/usr 2.31 + strip -s $fs/usr/bin/* 2.32 +} 2.33 +
3.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 3.2 +++ b/xarchive/receipt Thu Mar 20 00:22:38 2008 +0100 3.3 @@ -0,0 +1,38 @@ 3.4 +# SliTaz package receipt. 3.5 + 3.6 +PACKAGE="xarchive" 3.7 +VERSION="0.2.8-6" 3.8 +CATEGORY="x-windows" 3.9 +SHORT_DESC="" 3.10 +MAINTAINER="Erjo <erjo@slitaz.org>" 3.11 +DEPENDS="" 3.12 +TARBALL="$PACKAGE-$VERSION.tar.gz" 3.13 +WEB_SITE="http://xarchive.sourceforge.net/" 3.14 +WGET_URL="http://heanet.dl.sourceforge.net/sourceforge/xarchive/$TARBALL" 3.15 +JWM_MENU='Utilities:<Program icon="xarchive.xpm" label="XArchive">xarchive</Program>' 3.16 + 3.17 +# Rules to configure and make the package.ls sr 3.18 +compile_rules() 3.19 +{ 3.20 + cd $src 3.21 + # patch tar-wrap for busybox tar option 3.22 + patch -p1 -i ../stuff/tar-wrap.patch 3.23 + 3.24 + ./configure --prefix=/usr --infodir=/usr/share/info \ 3.25 + --mandir=/usr/share/man $CONFIGURE_ARGS 3.26 + 3.27 + 3.28 + make 3.29 + make DESTDIR=$PWD/_pkg install 3.30 +} 3.31 + 3.32 +# Rules to gen a SliTaz package suitable for Tazpkg. 3.33 +genpkg_rules() 3.34 +{ 3.35 + mkdir -p $fs/usr/lib 3.36 + cp -a $_pkg/usr/bin $fs/usr 3.37 + cp -a $_pkg/usr/lib $fs/usr 3.38 + 3.39 + strip -s $fs/usr/bin/* 3.40 +} 3.41 +
4.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 4.2 +++ b/xarchive/stuff/tar-wrap.patch Thu Mar 20 00:22:38 2008 +0100 4.3 @@ -0,0 +1,36 @@ 4.4 +--- xarchive-0.2.8-6.ori/wrappers/tar-gnu.src Tue Nov 8 20:50:59 2005 4.5 ++++ xarchive-0.2.8-6/wrappers/tar-gnu.src Tue Mar 11 23:28:34 2008 4.6 +@@ -1,4 +1,4 @@ 4.7 +-#! /path/to/bash 4.8 ++#! /bin/bash 4.9 + # tar-wrap.sh - bash tar wrapper for xarchive frontend 4.10 + # Copyright (C) 2005 Lee Bigelow <ligelowbee@yahoo.com> 4.11 + # 4.12 +@@ -54,14 +54,14 @@ 4.13 + if [ $(expr "$lc_archive" : ".*\."$ext"$") -gt 0 ]; then 4.14 + DECOMPRESS="gzip -dc" 4.15 + COMPRESS="gzip -c" 4.16 +- TAR_COMPRESS_OPT="--use-compress-prog=gzip" 4.17 ++ TAR_COMPRESS_OPT="z" 4.18 + fi 4.19 + done 4.20 + for ext in $BZIP2_EXTS; do 4.21 + if [ $(expr "$lc_archive" : ".*\."$ext"$") -gt 0 ]; then 4.22 + DECOMPRESS="bzip2 -dc" 4.23 + COMPRESS="bzip2 -c" 4.24 +- TAR_COMPRESS_OPT="--use-compress-prog=bzip2" 4.25 ++ TAR_COMPRESS_OPT="j" 4.26 + fi 4.27 + done 4.28 + for ext in $COMPRESS_EXTS; do 4.29 +@@ -76,8 +76,8 @@ 4.30 + # open and extract can use tar's cmd line option 4.31 + # add, new, and remove need to decompress the tar first 4.32 + # do their thing, than recompress the tar. 4.33 +-OPEN_OPTS="$TAR_COMPRESS_OPT -tvf" 4.34 +-EXTRACT_OPTS="$TAR_COMPRESS_OPT -xf" 4.35 ++OPEN_OPTS="tv${TAR_COMPRESS_OPT}f" 4.36 ++EXTRACT_OPTS="-x${TAR_COMPRESS_OPT}f" 4.37 + ADD_OPTS="-rf" 4.38 + NEW_OPTS="-cf" 4.39 + REMOVE_OPTS="--delete -f"
5.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 5.2 +++ b/xarchive/stuff/xarchive.desktop Thu Mar 20 00:22:38 2008 +0100 5.3 @@ -0,0 +1,22 @@ 5.4 +[Desktop Entry] 5.5 +Version=1.0 5.6 +Encoding=UTF-8 5.7 + 5.8 +Name=XArchive Manager 5.9 +Name[de]=XArchive Manager 5.10 +Name[en_CA]=XArchive Manager 5.11 +Name[en_GB]=XArchive Manager 5.12 +Comment=Create, modify and browse an archive 5.13 +Comment[de]=Archive anlegen, verändern und durchsuchen 5.14 +Comment[en_CA]=Create, modify and browse an archive 5.15 +Comment[en_GB]=Create, modify and browse an archive 5.16 +GenericName=Archive Manager 5.17 + 5.18 +Categories=Gtk;Application;System;Utility; 5.19 +Exec=xarchive %F 5.20 +Icon=/usr/share/pixmaps/xarchive.xpm 5.21 +StartupNotify=true 5.22 +Terminal=false 5.23 +Type=Application 5.24 +X-MultipleArgs=false 5.25 +MimeType=application/x-bzip;application/x-bzip-compressed-tar;application/x-compress;application/x-compressed-tar;application/x-gtar;application/x-gzip;application/x-rar;application/x-rar-compressed;application/x-tar;application/x-zip;application/x-zip-compressed;application/zip;multipart/x-zip;