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

DEPS=(gcc-libs)

SOURCE=https://github.com/ivmai/bdwgc/releases/download/v8.0.6/gc-8.0.6.tar.gz
DESC="A garbage collector for C and C++"

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