1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 23:17:46 +00:00

Ports: Make files a proper array

This commit is contained in:
Tim Schumacher 2023-07-10 13:10:29 +02:00 committed by Jelle Raaijmakers
parent 3c2d846b94
commit 284fee9e77
311 changed files with 959 additions and 350 deletions

View file

@ -1,7 +1,9 @@
#!/usr/bin/env -S bash ../.port_include.sh
port='mbedtls'
version='3.1.0'
files="https://github.com/Mbed-TLS/mbedtls/archive/refs/tags/v${version}.tar.gz mbedtls-${version}.tgz b02df6f68dd1537e115a8497d5c173dc71edc55ad084756e57a30f951b725acd"
files=(
"https://github.com/Mbed-TLS/mbedtls/archive/refs/tags/v${version}.tar.gz mbedtls-${version}.tgz b02df6f68dd1537e115a8497d5c173dc71edc55ad084756e57a30f951b725acd"
)
makeopts=(
"SHARED=1"
)