Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
VideoLAN
VLMC
Commits
0d1ccd6d
Commit
0d1ccd6d
authored
Jul 21, 2016
by
Hugo Beauzée-Luyssen
Browse files
contribs: Add 7z support
parent
122e54be
Changes
1
Hide whitespace changes
Inline
Side-by-side
contribs/src/main.mak
View file @
0d1ccd6d
...
...
@@ -338,7 +338,9 @@ UNPACK = $(RM) -R $@ \
$(
foreach
f,
$(
filter
%.tar.gz %.tgz,
$^
)
,
&&
tar
xvzf
$(f)
)
\
$(
foreach
f,
$(
filter
%.tar.bz2,
$^
)
,
&&
tar
xvjf
$(f)
)
\
$(
foreach
f,
$(
filter
%.tar.xz,
$^
)
,
&&
tar
xvJf
$(f)
)
\
$(
foreach
f,
$(
filter
%.zip,
$^
)
,
&&
unzip
$(f)
)
$(
foreach
f,
$(
filter
%.zip,
$^
)
,
&&
unzip
$(f)
)
\
$(
foreach
f,
$(
filter
%.7z,
$^
)
,
&&
7z x
$(f)
)
UNPACK_DIR
=
$(
patsubst
%.tar,%,
$(
basename
$(
notdir
$<
)))
APPLY
=
(
cd
$(UNPACK_DIR)
&&
patch
-fp1
)
<
pkg_static
=
(
cd
$(UNPACK_DIR)
&&
../../../contribs/src/pkg-static.sh
$(1)
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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