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

DEPS=(gcc-libs)

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

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