1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 07:47:34 +00:00

Ports: Add zlib port

This commit is contained in:
Vincent Sanders 2019-10-05 21:34:19 +01:00 committed by Andreas Kling
parent 56d1ae98bc
commit 7162347563
2 changed files with 10 additions and 0 deletions

View file

@ -4,3 +4,4 @@ version=7.65.3
useconfigure=true
configopts="--disable-threaded-resolver"
files="https://curl.haxx.se/download/curl-7.65.3.tar.bz2 curl-7.65.3.tar.bz2"
depends=zlib

9
Ports/zlib/package.sh Executable file
View file

@ -0,0 +1,9 @@
#!/bin/bash ../.port_include.sh
port=zlib
version=1.2.11
useconfigure=true
files="https://www.zlib.net/zlib-1.2.11.tar.gz zlib-1.2.11.tar.gz"
configure() {
run ./configure
}