mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 09:18:05 +03:00
f46d80ac4f
* Use ${version} instead of explicit version numbers in urls/filenames * Move -L option to port script, as this is always good * Fix some various other stuff
15 lines
494 B
Bash
Executable File
15 lines
494 B
Bash
Executable File
#!/bin/bash ../.port_include.sh
|
|
port=bc
|
|
version=2.5.1
|
|
files="https://github.com/gavinhoward/bc/releases/download/${version}/bc-${version}.tar.xz bc-${version}.tar.xz
|
|
https://github.com/gavinhoward/bc/releases/download/${version}/bc-${version}.tar.xz.sig bc-${version}.tar.xz.sig"
|
|
useconfigure=true
|
|
configscript=configure.sh
|
|
auth_type="sig"
|
|
auth_import_key="E2A30324A4465A4D5882692EC08038BDF280D33E"
|
|
auth_opts="bc-${version}.tar.xz.sig"
|
|
|
|
configure() {
|
|
run env HOSTCC=gcc ./"$configscript"
|
|
}
|