summaryrefslogtreecommitdiff
path: root/repo/core/gc.xibuild
blob: 8afc436ea2e24f872ae3e9108205b00dc3a299ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash

DEPS=(gcc-libs)

SOURCE=https://www.hboehm.info/gc/gc_source/gc-8.2.0.tar.gz
DESC="A garbage collector for C and C++"

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