commit: 12e077100985efcebcf278a8025c7df53d953a8c
Author: Sergey Popov <pinkbyte <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 9 18:08:40 2014 +0000
Commit: Sergey Popov <pinkbyte <AT> gentoo <DOT> org>
CommitDate: Sun Mar 9 18:08:40 2014 +0000
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/gamerlay.git;a=commit;h=12e07710
unpacker-nixstaller.eclass: fix handling of LZMA tarballs with new sys-apps/file
---
eclass/unpacker-nixstaller.eclass | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/eclass/unpacker-nixstaller.eclass
b/eclass/unpacker-nixstaller.eclass
index 74ed2ba..717fc33 100644
--- a/eclass/unpacker-nixstaller.eclass
+++ b/eclass/unpacker-nixstaller.eclass
@@ -38,7 +38,7 @@ nixstaller_unpack() {
[[ -f "./$i" ]] && (
local type=$(file -b ${i})
case ${type} in
- data)
+ data|LZMA*)
tar -xJf "./$i"
;;
gzip*)