diff options
author | Robert P. J. Day <rpjday@crashcourse.ca> | 2010-06-04 21:53:20 +0000 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2010-06-06 17:55:01 -0700 |
commit | 7d044a5230aa7a383598bf3a9132c013529c5a62 (patch) | |
tree | 06878a321c1fc172c56ed6a9094ad5058395fa9f | |
parent | f02241936b43cf868f2745f7fe4f544480a75861 (diff) |
Manual: Add missing unpack file formats to list.
Add entries for .tbz2, .xz, .tar.xz and .jar files.
Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | docs/usermanual/reference/var_src_uri.xml | 22 |
1 files changed, 20 insertions, 2 deletions
diff --git a/docs/usermanual/reference/var_src_uri.xml b/docs/usermanual/reference/var_src_uri.xml index 39eedc0927..2052fa8896 100644 --- a/docs/usermanual/reference/var_src_uri.xml +++ b/docs/usermanual/reference/var_src_uri.xml @@ -113,7 +113,7 @@ SRC_URI[sha256sum] = "36bdb85c97b39ac604bc58cb7857ee08295242c78a12848ef8a31 </varlistentry> <varlistentry> - <term>.tbz, .tar.bz2</term> + <term>.tbz, .tbz2, .tar.bz2</term> <listitem> <para>Bzip2 compressed tar archives which will be extracted with @@ -143,7 +143,25 @@ SRC_URI[sha256sum] = "36bdb85c97b39ac604bc58cb7857ee08295242c78a12848ef8a31 </varlistentry> <varlistentry> - <term>.zip</term> + <term>.xz</term> + + <listitem> + <para>xz (LZMA2) compressed files which will be decompressed with + <command>"xz -dc <srcfile> > <srcfile>"</command>.</para> + </listitem> + </varlistentry> + + <varlistentry> + <term>.tar.xz</term> + + <listitem> + <para>xz (LZMA2) compressed tar archives which will be decompressed with + <command>"xz -dc <srcfile> | tar x --no-same-owner -f -"</command>.</para> + </listitem> + </varlistentry> + + <varlistentry> + <term>.zip, .jar</term> <listitem> <para>Zip archives which will be extracted with <command>"unzip -q |