serenity/Ports/composer/package.sh

20 lines
428 B
Bash
Raw Normal View History

2021-06-13 15:31:16 +00:00
#!/usr/bin/env -S bash ../.port_include.sh
port='composer'
version='2.6.5'
2023-07-10 11:10:29 +00:00
files=(
"https://getcomposer.org/download/${version}/composer.phar#9a18e1a3aadbcb94c1bafd6c4a98ff931f4b43a456ef48575130466e19f05dd6"
2023-07-10 11:10:29 +00:00
)
depends=(
'php'
)
2021-06-13 15:31:16 +00:00
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}"
2021-06-13 15:31:16 +00:00
}