Ports: Add support for zip files and ensure configure is executable (#773)
This commit is contained in:
parent
d3504b4f9b
commit
d76fb99403
Notes:
sideshowbarker
2024-07-19 11:14:25 +09:00
Author: https://github.com/danboid Commit: https://github.com/SerenityOS/serenity/commit/d76fb994030 Pull-request: https://github.com/SerenityOS/serenity/pull/773 Reviewed-by: https://github.com/awesomekling
1 changed files with 4 additions and 0 deletions
|
@ -50,6 +50,9 @@ func_defined fetch || fetch() {
|
|||
*.gz)
|
||||
run_nocd gunzip "$filename"
|
||||
;;
|
||||
*.zip)
|
||||
run_nocd bsdtar xf "$filename"
|
||||
;;
|
||||
*)
|
||||
echo "Note: no case for file $filename."
|
||||
;;
|
||||
|
@ -152,6 +155,7 @@ do_fetch() {
|
|||
do_configure() {
|
||||
if [ "$useconfigure" = "true" ]; then
|
||||
echo "Configuring $port!"
|
||||
chmod +x "${workdir}"/"$configscript"
|
||||
configure
|
||||
else
|
||||
echo "This port does not use a configure script. Skipping configure step."
|
||||
|
|
Loading…
Add table
Reference in a new issue