mirror of
https://github.com/RGBCube/serenity
synced 2025-07-13 17:07:34 +00:00

* 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
|
|
}
|