diff options
author | Dave Reisner <dreisner@archlinux.org> | 2013-02-13 03:18:31 +0100 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2013-02-16 02:06:43 +0100 |
commit | 0a5b79e1339ce07c06b86f2d8cdc474f3532919d (patch) | |
tree | fa523c65ff5b6f9d4830127a0d23b71455012cfe /scripts/makepkg.sh.in | |
parent | 540cae816a153d9b79b888c65dcbeff952a36d23 (diff) | |
download | pacman-0a5b79e1339ce07c06b86f2d8cdc474f3532919d.tar.gz pacman-0a5b79e1339ce07c06b86f2d8cdc474f3532919d.tar.xz |
makepkg: add support for .pkg.tar.lzo
Supported by libarchive as of version 3.1.0 when compiled against lzo2
or in the presence of the lzop binary.
Signed-off-by: Dave Reisner <dreisner@archlinux.org>
Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'scripts/makepkg.sh.in')
-rw-r--r-- | scripts/makepkg.sh.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in index 293e13f8..bd29d737 100644 --- a/scripts/makepkg.sh.in +++ b/scripts/makepkg.sh.in @@ -1828,6 +1828,7 @@ create_package() { *tar.bz2) ${COMPRESSBZ2[@]:-bzip2 -c -f} ;; *tar.xz) ${COMPRESSXZ[@]:-xz -c -z -} ;; *tar.lrz) ${COMPRESSLRZ[@]:-lrzip -q} ;; + *tar.lzo) ${COMPRESSLZO[@]:-lzop -q} ;; *tar.Z) ${COMPRESSZ[@]:-compress -c -f} ;; *tar) cat ;; *) warning "$(gettext "'%s' is not a valid archive extension.")" \ @@ -1944,6 +1945,7 @@ create_srcpackage() { *tar.bz2) TAR_OPT="-j" ;; *tar.xz) TAR_OPT="-J" ;; *tar.lrz) TAR_OPT="--lrzip" ;; + *tar.lzo) TAR_OPT="--lzop" ;; *tar.Z) TAR_OPT="-Z" ;; *tar) TAR_OPT="" ;; *) warning "$(gettext "'%s' is not a valid archive extension.")" \ |