blob: 6b822f92db1e9f2b372998086f718c473440983d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#!/bin/bash
DEPS=(glibc)
PKG_VER=1.2.11
SOURCE=https://github.com/madler/zlib/archive/refs/tags/v$PKG_VER.tar.gz
DESC="compression and decompression routines used by some programs"
build () {
./configure --prefix=/usr
make
}
check () {
make check
}
package () {
make DESTDIR=$PKG_DEST install
rm -fv $PKG_DEST/usr/lib/libz.a
}
|