23 lines
466 B
TOML
23 lines
466 B
TOML
name = "zlib"
|
|
version = "1.3"
|
|
description = "Compression library implementing the deflate compression method found in gzip and PKZIP"
|
|
|
|
[source]
|
|
url = "https://zlib.net/fossils/zlib-1.3.tar.gz"
|
|
sha256 = "ff0ba4c292013dbc27530b3a81e1f9a813cd39de01ca5e0f8bf355702efa593e"
|
|
patches = []
|
|
|
|
[build]
|
|
commands = [
|
|
"./configure --prefix=/usr --shared",
|
|
"make -j${jobs}"
|
|
]
|
|
|
|
[package]
|
|
commands = [
|
|
"make DESTDIR=${pkgdir} install"
|
|
]
|
|
env = [
|
|
"CFLAGS=-O2 -fPIC"
|
|
]
|
|
|