mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 01:06:01 +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
362 B
Bash
Executable File
15 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
|
|
}
|