mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-23 17:52:26 -05: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
14 lines
362 B
Bash
Executable file
14 lines
362 B
Bash
Executable file
#!/bin/bash ../.port_include.sh
|
|
port=zlib
|
|
version=1.2.11
|
|
useconfigure=true
|
|
files="https://www.zlib.net/zlib-${version}.tar.gz zlib-${version}.tar.gz
|
|
https://www.zlib.net/zlib-${version}.tar.gz.asc zlib-${version}.tar.gz.asc"
|
|
|
|
auth_type="sig"
|
|
auth_import_key="783FCD8E58BCAFBA"
|
|
auth_opts="zlib-${version}.tar.gz.asc"
|
|
|
|
configure() {
|
|
run ./configure --static
|
|
}
|