Ports/composer: Update composer to version 2.3.5

This commit is contained in:
EWouters 2022-06-02 22:05:04 +02:00 committed by Linus Groh
parent 34eff055b2
commit 2a9a2f17a1
Notes: sideshowbarker 2024-07-17 10:24:49 +09:00
2 changed files with 8 additions and 8 deletions

View File

@ -29,7 +29,7 @@ This list is also available at [ports.serenityos.net](https://ports.serenityos.n
| [`citron`](citron/) | Citron Programming Language | 0.0.9.3 | https://github.com/alimpfard/citron |
| [`cmake`](cmake/) | CMake | 3.23.2 | https://cmake.org/ |
| [`cmatrix`](cmatrix/) | cmatrix | 3112b12 | https://github.com/abishekvashok/cmatrix |
| [`composer`](composer/) | Composer | 2.3.4 | https://getcomposer.org/ |
| [`composer`](composer/) | Composer | 2.3.5 | https://getcomposer.org/ |
| [`coreutils`](coreutils/) | GNU core utilities | 9.1 | https://www.gnu.org/software/coreutils/ |
| [`curl`](curl/) | curl | 7.83.1 | https://curl.se/ |
| [`dash`](dash/) | DASH | 0.5.10.2 | http://gondor.apana.org.au/~herbert/dash |

View File

@ -1,8 +1,8 @@
#!/usr/bin/env -S bash ../.port_include.sh
port=composer
version="2.3.4"
files="https://getcomposer.org/download/${version}/composer.phar composer.phar 1fc8fc5b43f081fe76fa85eb5a213412e55f54a60bae4880bc96521ae482d6c3"
auth_type=sha256
port='composer'
version='2.3.5'
files="https://getcomposer.org/download/${version}/composer.phar composer.phar 3b3b5a899c06a46aec280727bdf50aad14334f6bc40436ea76b07b650870d8f4"
auth_type='sha256'
depends=("php")
build() {
@ -10,7 +10,7 @@ build() {
}
install() {
local target_path=${SERENITY_INSTALL_ROOT}/usr/local/bin/composer
run_nocd cp composer.phar ${target_path}
run_nocd chmod +x ${target_path}
local target_path="${SERENITY_INSTALL_ROOT}/usr/local/bin/composer"
run_nocd cp composer.phar "${target_path}"
run_nocd chmod +x "${target_path}"
}