summaryrefslogtreecommitdiff
path: root/repo/system/zlib.xibuild
blob: 9402a1d0d0580d8d3eca7a1a4f642f3361ca241b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/bash

DEPS=(glibc)

SOURCE=https://github.com/madler/zlib/archive/refs/tags/v1.2.11.tar.gz
DESC="compression and decompression routines used by some programs"


build () {
    ./configure --prefix=/usr 
    make
    make check
    make DESTDIR=$PKG_DEST install
}

package () {
    # Remove a useless static library (lfs recommended)
    rm -fv $PKG_DEST/usr/lib/libz.a 
}