Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
alpine
abuild
Commits
a5f67dcf
Commit
a5f67dcf
authored
May 23, 2012
by
Natanael Copa
Browse files
abuild: add support for uncompressed tar archives
parent
703ed7ba
Changes
1
Show whitespace changes
Inline
Side-by-side
abuild.in
View file @
a5f67dcf
...
...
@@ -404,6 +404,9 @@ default_unpack() {
for
u
in
$source
;
do
local
s
=
"
$SRCDEST
/
${
u
##*/
}
"
# $(basename $s)
case
"
$s
"
in
*
.tar
)
msg
"Unpacking
$s
..."
tar
-C
"
$srcdir
"
-xf
"
$s
"
||
return
1
;;
*
.tar.gz|
*
.tgz
)
msg
"Unpacking
$s
..."
tar
-C
"
$srcdir
"
-zxf
"
$s
"
||
return
1
;;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment